├── .gitattributes ├── .gitignore ├── CrmAzureMachineLearningDemo ├── AzureMlDataLoaderSSIS │ ├── AzureMlDataLoader.sln │ └── AzureMlDataLoader │ │ ├── AzureMlDataLoader.database │ │ ├── AzureMlDataLoader.dtproj │ │ ├── Package.dtsx │ │ └── Project.params ├── CrmAzureMlDemo │ ├── CrmAzureMlDemo.sln │ ├── CrmAzureMlDemo │ │ ├── CrmAzureMlDemo.csproj │ │ ├── ExecuteModel.cs │ │ ├── JsonRequestResponse.cs │ │ ├── LucasKey.snk │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── packages │ │ └── Dynamics.Crm.Sdk.Clean.7.1.0.0 │ │ ├── Dynamics.Crm.Sdk.Clean.7.1.0.0.nupkg │ │ ├── [Content_Types].xml │ │ └── lib │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Xrm.Client.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ └── Microsoft.Xrm.Sdk.dll ├── DemoMLsolution_0_0_0_1.zip └── aw-contacts.csv ├── CrmAzureTextAnalysis ├── CrmAzureTextAnalysis.sln ├── CrmAzureTextAnalysis │ ├── AnalyzeSentiment.cs │ ├── CrmAzureTextAnalysis.csproj │ ├── HtmlTools.cs │ ├── LucasKey.snk │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── crm-solution │ └── AzureTextAnalytics.zip └── packages │ └── Dynamics.Crm.Sdk.Clean.7.1.0.0 │ ├── Dynamics.Crm.Sdk.Clean.7.1.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── Microsoft.Crm.Sdk.Proxy.dll │ ├── Microsoft.Xrm.Client.dll │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ └── Microsoft.Xrm.Sdk.dll ├── CrmDataSnapshots ├── DataSnapshots.sln ├── DataSnapshots │ ├── DataSnapshots.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StartScheduledWorkflows.cs │ ├── TakeSnapshot.cs │ └── packages.config └── packages │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1 │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.CrmSdk.Workflow.6.1.1 │ ├── Microsoft.CrmSdk.Workflow.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ └── lib │ │ └── net35 │ │ └── Microsoft.IdentityModel.dll │ └── repositories.config ├── CrmJsonProcessing ├── LucasJsonPlugins.sln ├── LucasJsonPlugins │ ├── DoSomething.cs │ ├── JsonRequestResponse.cs │ ├── LucasJsonPlugins.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config └── packages │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1 │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.CrmSdk.Workflow.6.1.1 │ ├── Microsoft.CrmSdk.Workflow.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ └── lib │ │ └── net35 │ │ └── Microsoft.IdentityModel.dll │ └── repositories.config ├── CrmKeyValueManager ├── CrmKeyValueManager.sln ├── CrmKeyValueManager │ ├── CrmKeyValueManager.csproj │ ├── GetKeyValue.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── packages │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1 │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.CrmSdk.Workflow.6.1.1 │ ├── Microsoft.CrmSdk.Workflow.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ └── lib │ │ └── net35 │ │ └── Microsoft.IdentityModel.dll │ └── repositories.config ├── CrmLicensePlateRecognition ├── LicensePlateDemo │ ├── LicensePlateDemo.sln │ ├── LicensePlateDemo │ │ ├── CheckPlate.cs │ │ ├── JsonRequestResponse.cs │ │ ├── LicensePlateDemo.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── lucas.snk │ │ └── packages.config │ └── packages │ │ └── Dynamics.Crm.Sdk.Clean.7.1.0.0 │ │ ├── Dynamics.Crm.Sdk.Clean.7.1.0.0.nupkg │ │ ├── [Content_Types].xml │ │ └── lib │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Xrm.Client.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ └── Microsoft.Xrm.Sdk.dll ├── LicensePlateDemo_0_0_0_1.zip ├── app.js ├── crm-web-resources │ ├── lpa_checkplate.htm │ ├── lpa_checkplatejs.htm │ └── lpa_platestream.htm ├── detectmotion.js └── rawstream.htm ├── CrmMessageQueuing ├── LucasCrmMessageQueueTools │ ├── CliConsumer │ │ ├── App.config │ │ ├── CliConsumer.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Receive.cs │ ├── CliProvider │ │ ├── App.config │ │ ├── CliProvider.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Send.cs │ ├── LeadWriterSample │ │ ├── App.config │ │ ├── LeadType.cs │ │ ├── LeadWriterSample.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── LucasCrmMessageQueueTools.sln │ ├── MessageQueuePlugin │ │ ├── MessageQueuePlugin.csproj │ │ ├── MessageQueuePlugin.snk │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── QueueWriter.cs │ │ ├── ilmerge.bat │ │ ├── packages.config │ │ └── sample-plugin-config.txt │ ├── MessageQueueSandboxPlugin │ │ ├── MessageQueueSandboxPlugin.csproj │ │ ├── MessageQueueSandboxPlugin.snk │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SandboxQueueWriter.cs │ │ ├── ilmerge.bat │ │ ├── packages.config │ │ └── sample-sandbox-plugin-config.txt │ ├── packages │ │ ├── Microsoft.CrmSdk.CoreAssemblies.7.0.0.1 │ │ │ ├── Microsoft.CrmSdk.CoreAssemblies.7.0.0.1.nupkg │ │ │ └── lib │ │ │ │ └── net45 │ │ │ │ ├── LicenseTerms.docx │ │ │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ │ │ ├── Microsoft.Xrm.Sdk.dll │ │ │ │ ├── Microsoft.Xrm.Sdk.xml │ │ │ │ ├── Other Redistributable.txt │ │ │ │ └── Third Party Notices for CRM 2015 SDK.docx │ │ ├── Microsoft.CrmSdk.CoreTools.7.0.0.2 │ │ │ └── Microsoft.CrmSdk.CoreTools.7.0.0.2.nupkg │ │ ├── Microsoft.CrmSdk.Deployment.7.0.0.1 │ │ │ ├── Microsoft.CrmSdk.Deployment.7.0.0.1.nupkg │ │ │ └── lib │ │ │ │ └── net45 │ │ │ │ ├── LicenseTerms.docx │ │ │ │ ├── Microsoft.Xrm.Sdk.Deployment.dll │ │ │ │ ├── Microsoft.Xrm.Sdk.Deployment.xml │ │ │ │ ├── Other Redistributable.txt │ │ │ │ └── Third Party Notices for CRM 2015 SDK.docx │ │ ├── Microsoft.CrmSdk.Extensions.7.0.0.1 │ │ │ ├── Microsoft.CrmSdk.Extensions.7.0.0.1.nupkg │ │ │ └── lib │ │ │ │ └── net45 │ │ │ │ ├── AntiXSSLibrary.dll │ │ │ │ ├── LicenseTerms.docx │ │ │ │ ├── Microsoft.Xrm.Client.CodeGeneration.dll │ │ │ │ ├── Microsoft.Xrm.Client.dll │ │ │ │ ├── Microsoft.Xrm.Portal.Files.dll │ │ │ │ ├── Microsoft.Xrm.Portal.dll │ │ │ │ ├── Other Redistributable.txt │ │ │ │ └── Third Party Notices for CRM 2015 SDK.docx │ │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ │ │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ │ │ └── lib │ │ │ │ └── net35 │ │ │ │ └── Microsoft.IdentityModel.dll │ │ ├── Newtonsoft.Json.6.0.7 │ │ │ ├── Newtonsoft.Json.6.0.7.nupkg │ │ │ ├── lib │ │ │ │ ├── net20 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ ├── net35 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ ├── net40 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ ├── net45 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ ├── netcore45 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ └── portable-net45+wp80+win8+wpa81+aspnetcore50 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ └── tools │ │ │ │ └── install.ps1 │ │ └── repositories.config │ ├── references │ │ ├── RabbitMQ.Client.dll │ │ └── RabbitMQ.Client.xml │ └── tools │ │ └── ILMerge.exe └── node-app │ ├── leadform.htm │ ├── node_modules │ └── amqp │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── LICENSE-MIT │ │ ├── Makefile │ │ ├── README.md │ │ ├── amqp-0-9-1-rabbit.xml │ │ ├── amqp-0-9-1.xml │ │ ├── amqp.js │ │ ├── jspack.js │ │ ├── lib │ │ ├── amqp-definitions-0-9-1.js │ │ ├── channel.js │ │ ├── connection.js │ │ ├── constants.js │ │ ├── debug.js │ │ ├── definitions.js │ │ ├── exchange.js │ │ ├── message.js │ │ ├── parser.js │ │ ├── promise.js │ │ ├── queue.js │ │ └── serializer.js │ │ ├── node_modules │ │ └── lodash │ │ │ ├── README.md │ │ │ ├── dist │ │ │ ├── lodash.compat.js │ │ │ ├── lodash.compat.min.js │ │ │ ├── lodash.js │ │ │ ├── lodash.legacy.js │ │ │ ├── lodash.legacy.min.js │ │ │ ├── lodash.min.js │ │ │ ├── lodash.mobile.js │ │ │ ├── lodash.mobile.min.js │ │ │ ├── lodash.underscore.js │ │ │ └── lodash.underscore.min.js │ │ │ ├── lodash.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── qparser.rb │ │ ├── runTests.sh │ │ ├── test │ │ ├── .jshintrc │ │ ├── harness.js │ │ ├── proxy.js │ │ ├── test-auto-delete-queue.js │ │ ├── test-basic-return.js │ │ ├── test-buffer.js │ │ ├── test-channel-overflow.js │ │ ├── test-connection-array-preference.js │ │ ├── test-connection-array.js │ │ ├── test-connection-callbacks.js │ │ ├── test-connection-connect.js │ │ ├── test-connection-disconnect.js │ │ ├── test-connection-timeout.js │ │ ├── test-consumer-cancel-notify.js │ │ ├── test-default-exchange.js │ │ ├── test-destroy-close-delete.js │ │ ├── test-ex-and-q-deletions.js │ │ ├── test-exchange-bind.js │ │ ├── test-exchange-bind_headers.js │ │ ├── test-exchange-callbacks.js │ │ ├── test-exchange-unbind.js │ │ ├── test-flow.js │ │ ├── test-headers.js │ │ ├── test-heartbeat.js │ │ ├── test-json.js │ │ ├── test-large-body.js │ │ ├── test-large-multiframe-body.js │ │ ├── test-parser.js │ │ ├── test-properties.js │ │ ├── test-publish-confirms-callback.js │ │ ├── test-publish-confirms-emitter.js │ │ ├── test-purge.js │ │ ├── test-queue-args.js │ │ ├── test-queue-bind-callbacks-cascaded.js │ │ ├── test-queue-bind-callbacks-sequential.js │ │ ├── test-queue-bind-callbacks-single.js │ │ ├── test-queue-bind-headers.js │ │ ├── test-queue-creation.js │ │ ├── test-queue-declare-error.js │ │ ├── test-queue-subscribe-event.js │ │ ├── test-queue-unbind-headers.js │ │ ├── test-receive-empty-messages.js │ │ ├── test-reconnection-server-named-queue.js │ │ ├── test-reconnection.js │ │ ├── test-reject.js │ │ ├── test-shift.js │ │ ├── test-simple.js │ │ ├── test-type-and-headers.js │ │ ├── test-unbind.js │ │ ├── test-unsubscribe.js │ │ └── test-volume.js │ │ ├── test2 │ │ ├── federation.js │ │ └── firehose.js │ │ ├── test2src │ │ ├── Cakefile │ │ ├── federation.coffee │ │ └── firehose.coffee │ │ └── util │ │ ├── delete-exchange.js │ │ └── delete-queue.js │ └── queuewriter.js ├── CrmQueueGetNext ├── CrmQueueGetNext.sln ├── CrmQueueGetNext │ ├── CrmQueueGetNext.csproj │ ├── GetNextItem.cs │ ├── LucasKey.snk │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── crm │ ├── CaseGetNext_sln.zip │ ├── lpa_callgetnext.htm │ └── lpa_callgetnext_usd.htm └── packages │ └── Dynamics.Crm.Sdk.Clean.7.1.0.0 │ ├── Dynamics.Crm.Sdk.Clean.7.1.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── Microsoft.Crm.Sdk.Proxy.dll │ ├── Microsoft.Xrm.Client.dll │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ └── Microsoft.Xrm.Sdk.dll ├── CrmRegexTools ├── CrmRegexTools.sln ├── CrmRegexTools │ ├── CrmRegexTools.csproj │ ├── ExtractRegex.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ValidateRegex.cs │ └── packages.config └── packages │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1 │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.CrmSdk.Workflow.6.1.1 │ ├── Microsoft.CrmSdk.Workflow.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ └── lib │ │ └── net35 │ │ └── Microsoft.IdentityModel.dll │ └── repositories.config ├── CrmScheduledWorkflows ├── ScheduledWorkflows.sln ├── ScheduledWorkflows │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScheduledWorkflows.csproj │ ├── StartScheduledWorkflows.cs │ ├── app.config │ └── packages.config └── packages │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1 │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.CrmSdk.Workflow.6.1.1 │ ├── Microsoft.CrmSdk.Workflow.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ └── lib │ │ └── net35 │ │ └── Microsoft.IdentityModel.dll │ └── repositories.config ├── CrmStreamingNotifications ├── client-src │ ├── console-app │ │ └── socket_demo │ │ │ ├── packages │ │ │ ├── EngineIoClientDotNet.0.9.11 │ │ │ │ ├── EngineIoClientDotNet.0.9.11.nupkg │ │ │ │ ├── EngineIoClientDotNet.0.9.11.nuspec │ │ │ │ └── lib │ │ │ │ │ ├── net35 │ │ │ │ │ └── EngineIoClientDotNet.dll │ │ │ │ │ ├── net45 │ │ │ │ │ └── EngineIoClientDotNet.dll │ │ │ │ │ ├── netcore45 │ │ │ │ │ └── EngineIoClientDotNet.dll │ │ │ │ │ ├── portable-win81+wpa81 │ │ │ │ │ └── EngineIoClientDotNet.dll │ │ │ │ │ ├── portable-wpa81+wp81 │ │ │ │ │ └── EngineIoClientDotNet.dll │ │ │ │ │ └── windowsphone8 │ │ │ │ │ └── EngineIoClientDotNet.dll │ │ │ ├── Newtonsoft.Json.6.0.6 │ │ │ │ ├── Newtonsoft.Json.6.0.6.nupkg │ │ │ │ ├── Newtonsoft.Json.6.0.6.nuspec │ │ │ │ ├── lib │ │ │ │ │ ├── net20 │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ │ ├── net35 │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ │ ├── net40 │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ │ ├── net45 │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ │ ├── netcore45 │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ │ └── portable-net45+wp80+win8+wpa81+aspnetcore50 │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── Newtonsoft.Json.xml │ │ │ │ └── tools │ │ │ │ │ └── install.ps1 │ │ │ ├── SocketIoClientDotNet.0.9.6 │ │ │ │ ├── SocketIoClientDotNet.0.9.6.nupkg │ │ │ │ ├── SocketIoClientDotNet.0.9.6.nuspec │ │ │ │ └── lib │ │ │ │ │ ├── net35 │ │ │ │ │ └── SocketIoClientDotNet.dll │ │ │ │ │ ├── net45 │ │ │ │ │ └── SocketIoClientDotNet.dll │ │ │ │ │ ├── netcore45 │ │ │ │ │ └── SocketIoClientDotNet.dll │ │ │ │ │ ├── portable-win81+wpa81 │ │ │ │ │ └── SocketIoClientDotNet.dll │ │ │ │ │ ├── portable-wpa81+wp81 │ │ │ │ │ └── SocketIoClientDotNet.dll │ │ │ │ │ └── windowsphone8 │ │ │ │ │ └── SocketIoClientDotNet.dll │ │ │ ├── WebSocket4Net.0.10 │ │ │ │ ├── WebSocket4Net.0.10.nupkg │ │ │ │ ├── WebSocket4Net.0.10.nuspec │ │ │ │ └── lib │ │ │ │ │ ├── monoandroid22 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── monotouch10 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── net20 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── net35 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── net40 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── net45 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── sl40-windowsphone71 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── sl40 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ ├── sl50-windowsphone80 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ │ │ └── sl50 │ │ │ │ │ └── WebSocket4Net.dll │ │ │ └── repositories.config │ │ │ ├── socket_demo.sln │ │ │ └── socket_demo │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── packages.config │ │ │ └── socket_demo.csproj │ └── web-pages │ │ ├── case-stream.htm │ │ ├── contact-stream.htm │ │ └── raw-stream.htm ├── node-site │ ├── app.js │ └── node_modules │ │ ├── .bin │ │ ├── wscat │ │ └── wscat.cmd │ │ └── socket.io │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ ├── client.js │ │ ├── index.js │ │ ├── namespace.js │ │ └── socket.js │ │ ├── node_modules │ │ ├── engine.io │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── engine.io.js │ │ │ │ ├── server.js │ │ │ │ ├── socket.js │ │ │ │ ├── transport.js │ │ │ │ └── transports │ │ │ │ │ ├── index.js │ │ │ │ │ ├── polling-jsonp.js │ │ │ │ │ ├── polling-xhr.js │ │ │ │ │ ├── polling.js │ │ │ │ │ └── websocket.js │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── wscat │ │ │ │ │ └── wscat.cmd │ │ │ │ ├── base64id │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ └── base64id.js │ │ │ │ │ └── package.json │ │ │ │ ├── engine.io-parser │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── keys.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── after │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── after-test.js │ │ │ │ │ │ ├── arraybuffer.slice │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── slice-buffer.js │ │ │ │ │ │ ├── base64-arraybuffer │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── grunt.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── base64-arraybuffer.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── base64-arraybuffer_test.js │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ ├── LICENSE-GPL.txt │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── utf8.js.html │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── generate-test-data.py │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── tests.js │ │ │ │ │ │ │ ├── utf8.js │ │ │ │ │ │ │ └── x.js │ │ │ │ │ └── package.json │ │ │ │ └── ws │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bench │ │ │ │ │ ├── parser.benchmark.js │ │ │ │ │ ├── sender.benchmark.js │ │ │ │ │ ├── speed.js │ │ │ │ │ └── util.js │ │ │ │ │ ├── binding.gyp │ │ │ │ │ ├── doc │ │ │ │ │ └── ws.md │ │ │ │ │ ├── examples │ │ │ │ │ ├── fileapi │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── uploader.js │ │ │ │ │ │ └── server.js │ │ │ │ │ ├── serverstats-express_3 │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── server.js │ │ │ │ │ ├── serverstats │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── server.js │ │ │ │ │ └── ssl.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── BufferPool.js │ │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ │ ├── BufferUtil.js │ │ │ │ │ ├── ErrorCodes.js │ │ │ │ │ ├── Receiver.hixie.js │ │ │ │ │ ├── Receiver.js │ │ │ │ │ ├── Sender.hixie.js │ │ │ │ │ ├── Sender.js │ │ │ │ │ ├── Validation.fallback.js │ │ │ │ │ ├── Validation.js │ │ │ │ │ ├── WebSocket.js │ │ │ │ │ ├── WebSocketServer.js │ │ │ │ │ └── browser.js │ │ │ │ │ ├── node_modules │ │ │ │ │ ├── commander │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── commander.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── nan │ │ │ │ │ │ ├── .index.js │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── options │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── options.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── tinycolor │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tinycolor.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ ├── bufferutil.cc │ │ │ │ │ └── validation.cc │ │ │ │ │ └── test │ │ │ │ │ ├── BufferPool.test.js │ │ │ │ │ ├── Receiver.hixie.test.js │ │ │ │ │ ├── Receiver.test.js │ │ │ │ │ ├── Sender.hixie.test.js │ │ │ │ │ ├── Sender.test.js │ │ │ │ │ ├── Validation.test.js │ │ │ │ │ ├── WebSocket.integration.js │ │ │ │ │ ├── WebSocket.test.js │ │ │ │ │ ├── WebSocketServer.test.js │ │ │ │ │ ├── autobahn-server.js │ │ │ │ │ ├── autobahn.js │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── agent1-cert.pem │ │ │ │ │ ├── agent1-key.pem │ │ │ │ │ ├── ca1-cert.pem │ │ │ │ │ ├── ca1-key.pem │ │ │ │ │ ├── certificate.pem │ │ │ │ │ ├── key.pem │ │ │ │ │ ├── request.pem │ │ │ │ │ └── textfile │ │ │ │ │ ├── hybi-common.js │ │ │ │ │ └── testserver.js │ │ │ └── package.json │ │ ├── has-binary-data │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── fixtures │ │ │ │ └── big.json │ │ │ ├── gen.js │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── isarray │ │ │ │ │ ├── README.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── socket.io-adapter │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── object-keys │ │ │ │ │ ├── .jscs.json │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── isArguments.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── socket.io-client │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── .zuul.yml │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── manager.js │ │ │ │ ├── on.js │ │ │ │ ├── socket.js │ │ │ │ └── url.js │ │ │ ├── node_modules │ │ │ │ ├── component-bind │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── component-emitter │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── engine.io-client │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── engine.io.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── socket.js │ │ │ │ │ │ ├── transport.js │ │ │ │ │ │ ├── transports │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── polling-jsonp.js │ │ │ │ │ │ │ ├── polling-xhr.js │ │ │ │ │ │ │ ├── polling.js │ │ │ │ │ │ │ └── websocket.js │ │ │ │ │ │ └── xmlhttprequest.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ ├── wscat │ │ │ │ │ │ │ └── wscat.cmd │ │ │ │ │ │ ├── component-inherit │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── inherit.js │ │ │ │ │ │ ├── engine.io-parser │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── keys.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── after │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── after-test.js │ │ │ │ │ │ │ │ ├── arraybuffer.slice │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── slice-buffer.js │ │ │ │ │ │ │ │ ├── base64-arraybuffer │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── grunt.js │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer_test.js │ │ │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ │ │ ├── LICENSE-GPL.txt │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ └── utf8.js.html │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ │ ├── generate-test-data.py │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── tests.js │ │ │ │ │ │ │ │ │ ├── utf8.js │ │ │ │ │ │ │ │ │ └── x.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── has-cors │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── global │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── mocha.css │ │ │ │ │ │ │ │ │ ├── mocha.js │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── parsejson │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── parseqs │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── parseuri │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── ws │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bench │ │ │ │ │ │ │ │ ├── parser.benchmark.js │ │ │ │ │ │ │ │ ├── sender.benchmark.js │ │ │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ └── ws.md │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── fileapi │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ └── uploader.js │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ ├── serverstats-express_3 │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ ├── serverstats │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ └── ssl.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── BufferPool.js │ │ │ │ │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ │ │ │ │ ├── BufferUtil.js │ │ │ │ │ │ │ │ ├── ErrorCodes.js │ │ │ │ │ │ │ │ ├── Receiver.hixie.js │ │ │ │ │ │ │ │ ├── Receiver.js │ │ │ │ │ │ │ │ ├── Sender.hixie.js │ │ │ │ │ │ │ │ ├── Sender.js │ │ │ │ │ │ │ │ ├── Validation.fallback.js │ │ │ │ │ │ │ │ ├── Validation.js │ │ │ │ │ │ │ │ ├── WebSocket.js │ │ │ │ │ │ │ │ ├── WebSocketServer.js │ │ │ │ │ │ │ │ └── browser.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── commander │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── commander.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── nan │ │ │ │ │ │ │ │ │ ├── .index.js │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── options.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ └── tinycolor │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── tinycolor.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ ├── bufferutil.cc │ │ │ │ │ │ │ │ └── validation.cc │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── BufferPool.test.js │ │ │ │ │ │ │ │ ├── Receiver.hixie.test.js │ │ │ │ │ │ │ │ ├── Receiver.test.js │ │ │ │ │ │ │ │ ├── Sender.hixie.test.js │ │ │ │ │ │ │ │ ├── Sender.test.js │ │ │ │ │ │ │ │ ├── Validation.test.js │ │ │ │ │ │ │ │ ├── WebSocket.integration.js │ │ │ │ │ │ │ │ ├── WebSocket.test.js │ │ │ │ │ │ │ │ ├── WebSocketServer.test.js │ │ │ │ │ │ │ │ ├── autobahn-server.js │ │ │ │ │ │ │ │ ├── autobahn.js │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ ├── agent1-cert.pem │ │ │ │ │ │ │ │ ├── agent1-key.pem │ │ │ │ │ │ │ │ ├── ca1-cert.pem │ │ │ │ │ │ │ │ ├── ca1-key.pem │ │ │ │ │ │ │ │ ├── certificate.pem │ │ │ │ │ │ │ │ ├── key.pem │ │ │ │ │ │ │ │ ├── request.pem │ │ │ │ │ │ │ │ └── textfile │ │ │ │ │ │ │ │ ├── hybi-common.js │ │ │ │ │ │ │ │ └── testserver.js │ │ │ │ │ │ └── xmlhttprequest │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── autotest.watchr │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ └── demo.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── test-constants.js │ │ │ │ │ │ │ ├── test-events.js │ │ │ │ │ │ │ ├── test-exceptions.js │ │ │ │ │ │ │ ├── test-headers.js │ │ │ │ │ │ │ ├── test-redirect-302.js │ │ │ │ │ │ │ ├── test-redirect-303.js │ │ │ │ │ │ │ ├── test-redirect-307.js │ │ │ │ │ │ │ ├── test-request-methods.js │ │ │ │ │ │ │ ├── test-request-protocols.js │ │ │ │ │ │ │ └── testdata.txt │ │ │ │ │ └── package.json │ │ │ │ ├── has-binary │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── big.json │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── isarray │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── indexof │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── object-component │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── object.js │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── run-test.sh │ │ │ │ │ │ └── test.js │ │ │ │ ├── parseuri │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ └── to-array │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENCE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── socket.io.js │ │ └── socket.io-parser │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── .zuul.yml │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── bench │ │ │ ├── bench.js │ │ │ └── index.js │ │ │ ├── binary.js │ │ │ ├── index.js │ │ │ ├── is-buffer.js │ │ │ ├── node_modules │ │ │ ├── benchmark │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── benchmark.js │ │ │ │ ├── doc │ │ │ │ │ └── README.md │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── run-test.sh │ │ │ │ │ └── test.js │ │ │ ├── component-emitter │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── bower.json │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── isarray │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── json3 │ │ │ │ ├── .gitmodules │ │ │ │ ├── .jamignore │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── coverage │ │ │ │ ├── coverage.json │ │ │ │ ├── lcov-report │ │ │ │ │ ├── lib │ │ │ │ │ │ └── json3.js.html │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ └── lcov.info │ │ │ │ ├── lib │ │ │ │ ├── json3.js │ │ │ │ └── json3.min.js │ │ │ │ └── package.json │ │ │ └── package.json │ │ └── package.json └── plugin-src │ ├── Node-Notifier.sln │ ├── Node-Notifier │ ├── Node-Notifier.csproj │ ├── Notifier.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ilmerge.bat │ └── node-notifier.snk │ ├── references │ ├── Microsoft.Xrm.Client.dll │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ ├── Microsoft.Xrm.Sdk.dll │ ├── Newtonsoft.Json.dll │ ├── WebSocket4Net.dll │ └── websocket-sharp.dll │ └── tools │ └── ILMerge.exe ├── CrmTeamConnection ├── CrmTeamConnection.sln ├── CrmTeamConnection │ ├── AssignUserToAccessTeamByName.cs │ ├── CrmTeamConnection.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemoveUserFromAccessTeamByName.cs │ └── packages.config └── packages │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1 │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.CrmSdk.Workflow.6.1.1 │ ├── Microsoft.CrmSdk.Workflow.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ └── lib │ │ └── net35 │ │ └── Microsoft.IdentityModel.dll │ └── repositories.config ├── CrmUnitTesting ├── CrmUnitTesting.sln ├── DemoCrm.Test │ ├── DemoCrm.Test.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestSample01.cs │ ├── TestSample02.cs │ ├── TestSample03.cs │ └── packages.config ├── DemoCrm │ ├── DemoCrm.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RetrieveAttributeResponseWrapper.cs │ ├── Sample01.cs │ ├── Sample02.cs │ ├── Sample03.cs │ └── packages.config ├── DemoCrmPlugin.Test │ ├── DemoCrmPlugin.Test.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestSamplePlugin.cs │ └── packages.config ├── DemoCrmPlugin │ ├── DemoCrmPlugin.csproj │ ├── FollowupPlugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── DemoCrmWorkflowActivities.Test │ ├── DemoCrmWorkflowActivities.Test.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestGetLocation.cs │ ├── TestValidateRegex_Sample01.cs │ ├── TestValidateRegex_Sample02.cs │ ├── WebRequestTestClasses.cs │ ├── map-response-good.xml │ └── packages.config ├── DemoCrmWorkflowActivities │ ├── DemoCrmWorkflowActivities.csproj │ ├── GetLocation.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ValidateRegex.cs │ └── packages.config └── packages │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1 │ ├── Microsoft.CrmSdk.CoreAssemblies.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Crm.Sdk.Proxy.dll │ │ ├── Microsoft.Crm.Sdk.Proxy.xml │ │ ├── Microsoft.Xrm.Sdk.dll │ │ ├── Microsoft.Xrm.Sdk.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.CrmSdk.Workflow.6.1.1 │ ├── Microsoft.CrmSdk.Workflow.6.1.1.nupkg │ └── lib │ │ ├── net40 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ │ └── net45 │ │ ├── LicenseTerms.docx │ │ ├── Microsoft.Xrm.Sdk.Workflow.dll │ │ ├── Microsoft.Xrm.Sdk.Workflow.xml │ │ ├── Other Redistributable.txt │ │ └── Third Party Notices for CRM 2013 SDK.docx │ ├── Microsoft.IdentityModel.6.1.7600.16394 │ ├── Microsoft.IdentityModel.6.1.7600.16394.nupkg │ └── lib │ │ └── net35 │ │ └── Microsoft.IdentityModel.dll │ ├── Moq.4.2.1409.1722 │ ├── Moq.4.2.1409.1722.nupkg │ └── lib │ │ ├── net35 │ │ ├── Moq.dll │ │ └── Moq.xml │ │ ├── net40 │ │ ├── Moq.dll │ │ └── Moq.xml │ │ └── sl4 │ │ ├── Moq.Silverlight.dll │ │ └── Moq.Silverlight.xml │ └── repositories.config ├── LICENSE ├── NodeClientDemo ├── .gitignore ├── app.js ├── node_modules │ ├── debug │ │ ├── Readme.md │ │ ├── debug.js │ │ ├── index.js │ │ ├── lib │ │ │ └── debug.js │ │ └── package.json │ ├── express-session │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── crc │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ ├── crc.js │ │ │ │ │ ├── crc1.js │ │ │ │ │ ├── crc16.js │ │ │ │ │ ├── crc16_ccitt.js │ │ │ │ │ ├── crc16_modbus.js │ │ │ │ │ ├── crc24.js │ │ │ │ │ ├── crc32.js │ │ │ │ │ ├── crc8.js │ │ │ │ │ ├── crc8_1wire.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── hex.js │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ ├── depd │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── compat │ │ │ │ │ │ ├── buffer-concat.js │ │ │ │ │ │ ├── callsite-tostring.js │ │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ ├── on-headers │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── HISTORY.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── uid-safe │ │ │ │ ├── HISTORY.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── base64-url │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.js │ │ │ │ │ └── native-or-bluebird │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── promise.js │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── session │ │ │ ├── cookie.js │ │ │ ├── memory.js │ │ │ ├── session.js │ │ │ └── store.js │ └── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ ├── application.js │ │ ├── express.js │ │ ├── middleware │ │ │ ├── init.js │ │ │ └── query.js │ │ ├── request.js │ │ ├── response.js │ │ ├── router │ │ │ ├── index.js │ │ │ ├── layer.js │ │ │ └── route.js │ │ ├── utils.js │ │ └── view.js │ │ ├── node_modules │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── mime-types │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── mime-db │ │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── db.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ └── negotiator │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── charset.js │ │ │ │ │ ├── encoding.js │ │ │ │ │ ├── language.js │ │ │ │ │ └── mediaType.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── compat │ │ │ │ │ ├── buffer-concat.js │ │ │ │ │ ├── callsite-tostring.js │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── escape-html │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── crc │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ ├── crc.js │ │ │ │ │ ├── crc1.js │ │ │ │ │ ├── crc16.js │ │ │ │ │ ├── crc16_ccitt.js │ │ │ │ │ ├── crc16_modbus.js │ │ │ │ │ ├── crc24.js │ │ │ │ │ ├── crc32.js │ │ │ │ │ ├── crc8.js │ │ │ │ │ ├── crc8_1wire.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── hex.js │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── merge-descriptors │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── ee-first │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── .npmignore │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── forwarded │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── ipaddr.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Cakefile │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ipaddr.min.js │ │ │ │ │ ├── lib │ │ │ │ │ └── ipaddr.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ └── ipaddr.coffee │ │ │ │ │ └── test │ │ │ │ │ └── ipaddr.test.coffee │ │ │ └── package.json │ │ ├── qs │ │ │ ├── .jshintignore │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── parse.js │ │ │ │ └── stringify.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── send │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── destroy │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── ms │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── mime-types │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ └── mime-db │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── db.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── vary │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json └── package.json ├── OauthTokenMicroservice └── app.py ├── README.md ├── SSIS ├── Integration Services Project1 │ ├── Integration Services Project1.sln │ └── Integration Services Project1 │ │ ├── Integration Services Project1.database │ │ ├── Integration Services Project1.dtproj │ │ ├── Package.dtsx │ │ └── Project.params └── ReferenceDataMover │ ├── ReferenceDataMover.sln │ └── ReferenceDataMover │ ├── AccessTeamTemplateMover.dtsx │ ├── Project.params │ ├── ReferenceDataMover.database │ └── ReferenceDataMover.dtproj └── misc-code-samples ├── CrmUsernamePasswordValidator.cs ├── crmidentity.cs └── easydependentpicklists.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/.gitignore -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/AzureMlDataLoaderSSIS/AzureMlDataLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/AzureMlDataLoaderSSIS/AzureMlDataLoader.sln -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/AzureMlDataLoaderSSIS/AzureMlDataLoader/Package.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/AzureMlDataLoaderSSIS/AzureMlDataLoader/Package.dtsx -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/AzureMlDataLoaderSSIS/AzureMlDataLoader/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/AzureMlDataLoaderSSIS/AzureMlDataLoader/Project.params -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo.sln -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/CrmAzureMlDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/CrmAzureMlDemo.csproj -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/ExecuteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/ExecuteModel.cs -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/JsonRequestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/JsonRequestResponse.cs -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/LucasKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/LucasKey.snk -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/CrmAzureMlDemo/CrmAzureMlDemo/packages.config -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/DemoMLsolution_0_0_0_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/DemoMLsolution_0_0_0_1.zip -------------------------------------------------------------------------------- /CrmAzureMachineLearningDemo/aw-contacts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureMachineLearningDemo/aw-contacts.csv -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/CrmAzureTextAnalysis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/CrmAzureTextAnalysis.sln -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/CrmAzureTextAnalysis/AnalyzeSentiment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/CrmAzureTextAnalysis/AnalyzeSentiment.cs -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/CrmAzureTextAnalysis/CrmAzureTextAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/CrmAzureTextAnalysis/CrmAzureTextAnalysis.csproj -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/CrmAzureTextAnalysis/HtmlTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/CrmAzureTextAnalysis/HtmlTools.cs -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/CrmAzureTextAnalysis/LucasKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/CrmAzureTextAnalysis/LucasKey.snk -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/CrmAzureTextAnalysis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/CrmAzureTextAnalysis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/CrmAzureTextAnalysis/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/CrmAzureTextAnalysis/packages.config -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/crm-solution/AzureTextAnalytics.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/crm-solution/AzureTextAnalytics.zip -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Client.dll -------------------------------------------------------------------------------- /CrmAzureTextAnalysis/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmAzureTextAnalysis/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Sdk.dll -------------------------------------------------------------------------------- /CrmDataSnapshots/DataSnapshots.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/DataSnapshots.sln -------------------------------------------------------------------------------- /CrmDataSnapshots/DataSnapshots/DataSnapshots.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/DataSnapshots/DataSnapshots.csproj -------------------------------------------------------------------------------- /CrmDataSnapshots/DataSnapshots/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/DataSnapshots/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmDataSnapshots/DataSnapshots/StartScheduledWorkflows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/DataSnapshots/StartScheduledWorkflows.cs -------------------------------------------------------------------------------- /CrmDataSnapshots/DataSnapshots/TakeSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/DataSnapshots/TakeSnapshot.cs -------------------------------------------------------------------------------- /CrmDataSnapshots/DataSnapshots/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/DataSnapshots/packages.config -------------------------------------------------------------------------------- /CrmDataSnapshots/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmDataSnapshots/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmDataSnapshots/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmDataSnapshots/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmDataSnapshots/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmDataSnapshots/packages/repositories.config -------------------------------------------------------------------------------- /CrmJsonProcessing/LucasJsonPlugins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/LucasJsonPlugins.sln -------------------------------------------------------------------------------- /CrmJsonProcessing/LucasJsonPlugins/DoSomething.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/LucasJsonPlugins/DoSomething.cs -------------------------------------------------------------------------------- /CrmJsonProcessing/LucasJsonPlugins/JsonRequestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/LucasJsonPlugins/JsonRequestResponse.cs -------------------------------------------------------------------------------- /CrmJsonProcessing/LucasJsonPlugins/LucasJsonPlugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/LucasJsonPlugins/LucasJsonPlugins.csproj -------------------------------------------------------------------------------- /CrmJsonProcessing/LucasJsonPlugins/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/LucasJsonPlugins/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmJsonProcessing/LucasJsonPlugins/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/LucasJsonPlugins/app.config -------------------------------------------------------------------------------- /CrmJsonProcessing/LucasJsonPlugins/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/LucasJsonPlugins/packages.config -------------------------------------------------------------------------------- /CrmJsonProcessing/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmJsonProcessing/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmJsonProcessing/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmJsonProcessing/packages/repositories.config -------------------------------------------------------------------------------- /CrmKeyValueManager/CrmKeyValueManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/CrmKeyValueManager.sln -------------------------------------------------------------------------------- /CrmKeyValueManager/CrmKeyValueManager/CrmKeyValueManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/CrmKeyValueManager/CrmKeyValueManager.csproj -------------------------------------------------------------------------------- /CrmKeyValueManager/CrmKeyValueManager/GetKeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/CrmKeyValueManager/GetKeyValue.cs -------------------------------------------------------------------------------- /CrmKeyValueManager/CrmKeyValueManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/CrmKeyValueManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmKeyValueManager/CrmKeyValueManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/CrmKeyValueManager/packages.config -------------------------------------------------------------------------------- /CrmKeyValueManager/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmKeyValueManager/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmKeyValueManager/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmKeyValueManager/packages/repositories.config -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo.sln -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/CheckPlate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/CheckPlate.cs -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/JsonRequestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/JsonRequestResponse.cs -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/LicensePlateDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/LicensePlateDemo.csproj -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/lucas.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/lucas.snk -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo/LicensePlateDemo/packages.config -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/LicensePlateDemo_0_0_0_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/LicensePlateDemo_0_0_0_1.zip -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/app.js -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/crm-web-resources/lpa_checkplate.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/crm-web-resources/lpa_checkplate.htm -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/crm-web-resources/lpa_checkplatejs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/crm-web-resources/lpa_checkplatejs.htm -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/crm-web-resources/lpa_platestream.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/crm-web-resources/lpa_platestream.htm -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/detectmotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/detectmotion.js -------------------------------------------------------------------------------- /CrmLicensePlateRecognition/rawstream.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmLicensePlateRecognition/rawstream.htm -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/App.config -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/CliConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/CliConsumer.csproj -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/Receive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliConsumer/Receive.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/App.config -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/CliProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/CliProvider.csproj -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/Send.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/CliProvider/Send.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/App.config -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/LeadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/LeadType.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/LeadWriterSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/LeadWriterSample.csproj -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/Program.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/LeadWriterSample/packages.config -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/LucasCrmMessageQueueTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/LucasCrmMessageQueueTools.sln -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/MessageQueuePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/MessageQueuePlugin.csproj -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/MessageQueuePlugin.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/MessageQueuePlugin.snk -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/QueueWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/QueueWriter.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/ilmerge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/ilmerge.bat -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/packages.config -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/sample-plugin-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueuePlugin/sample-plugin-config.txt -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueueSandboxPlugin/SandboxQueueWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueueSandboxPlugin/SandboxQueueWriter.cs -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueueSandboxPlugin/ilmerge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueueSandboxPlugin/ilmerge.bat -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueueSandboxPlugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/MessageQueueSandboxPlugin/packages.config -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/packages/repositories.config -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/references/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/references/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/references/RabbitMQ.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/references/RabbitMQ.Client.xml -------------------------------------------------------------------------------- /CrmMessageQueuing/LucasCrmMessageQueueTools/tools/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/LucasCrmMessageQueueTools/tools/ILMerge.exe -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/leadform.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/leadform.htm -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/.jshintrc -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/.npmignore: -------------------------------------------------------------------------------- 1 | lib/amqp/constants-generated.js 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/.travis.yml -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/CONTRIBUTING.md -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/History.md -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/LICENSE-MIT -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/Makefile -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/README.md -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/amqp-0-9-1-rabbit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/amqp-0-9-1-rabbit.xml -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/amqp-0-9-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/amqp-0-9-1.xml -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/amqp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/amqp.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/jspack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/jspack.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/amqp-definitions-0-9-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/amqp-definitions-0-9-1.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/channel.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/connection.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/constants.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/debug.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/definitions.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/exchange.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/message.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/parser.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/promise.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/queue.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/lib/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/lib/serializer.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/README.md -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.compat.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.compat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.compat.min.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.legacy.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.legacy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.legacy.min.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.min.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.mobile.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.mobile.min.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/dist/lodash.underscore.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/lodash.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/node_modules/lodash/package.json -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/package.json -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/qparser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/qparser.rb -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/runTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/runTests.sh -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/.jshintrc -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/harness.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/proxy.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-auto-delete-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-auto-delete-queue.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-basic-return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-basic-return.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-buffer.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-channel-overflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-channel-overflow.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-array-preference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-array-preference.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-array.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-callbacks.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-connect.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-disconnect.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-connection-timeout.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-consumer-cancel-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-consumer-cancel-notify.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-default-exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-default-exchange.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-destroy-close-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-destroy-close-delete.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-ex-and-q-deletions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-ex-and-q-deletions.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-bind.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-bind_headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-bind_headers.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-callbacks.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-unbind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-exchange-unbind.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-flow.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-headers.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-heartbeat.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-json.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-large-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-large-body.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-large-multiframe-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-large-multiframe-body.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-parser.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-properties.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-publish-confirms-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-publish-confirms-callback.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-publish-confirms-emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-publish-confirms-emitter.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-purge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-purge.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-args.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-callbacks-cascaded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-callbacks-cascaded.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-callbacks-sequential.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-callbacks-sequential.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-callbacks-single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-callbacks-single.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-bind-headers.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-creation.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-declare-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-declare-error.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-subscribe-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-subscribe-event.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-unbind-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-queue-unbind-headers.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-receive-empty-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-receive-empty-messages.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-reconnection-server-named-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-reconnection-server-named-queue.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-reconnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-reconnection.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-reject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-reject.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-shift.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-simple.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-type-and-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-type-and-headers.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-unbind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-unbind.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-unsubscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-unsubscribe.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test/test-volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test/test-volume.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test2/federation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test2/federation.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test2/firehose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test2/firehose.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test2src/Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test2src/Cakefile -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test2src/federation.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test2src/federation.coffee -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/test2src/firehose.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/test2src/firehose.coffee -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/util/delete-exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/util/delete-exchange.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/node_modules/amqp/util/delete-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/node_modules/amqp/util/delete-queue.js -------------------------------------------------------------------------------- /CrmMessageQueuing/node-app/queuewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmMessageQueuing/node-app/queuewriter.js -------------------------------------------------------------------------------- /CrmQueueGetNext/CrmQueueGetNext.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/CrmQueueGetNext.sln -------------------------------------------------------------------------------- /CrmQueueGetNext/CrmQueueGetNext/CrmQueueGetNext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/CrmQueueGetNext/CrmQueueGetNext.csproj -------------------------------------------------------------------------------- /CrmQueueGetNext/CrmQueueGetNext/GetNextItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/CrmQueueGetNext/GetNextItem.cs -------------------------------------------------------------------------------- /CrmQueueGetNext/CrmQueueGetNext/LucasKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/CrmQueueGetNext/LucasKey.snk -------------------------------------------------------------------------------- /CrmQueueGetNext/CrmQueueGetNext/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/CrmQueueGetNext/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmQueueGetNext/CrmQueueGetNext/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/CrmQueueGetNext/packages.config -------------------------------------------------------------------------------- /CrmQueueGetNext/crm/CaseGetNext_sln.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/crm/CaseGetNext_sln.zip -------------------------------------------------------------------------------- /CrmQueueGetNext/crm/lpa_callgetnext.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/crm/lpa_callgetnext.htm -------------------------------------------------------------------------------- /CrmQueueGetNext/crm/lpa_callgetnext_usd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/crm/lpa_callgetnext_usd.htm -------------------------------------------------------------------------------- /CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Crm.Sdk.Proxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Crm.Sdk.Proxy.dll -------------------------------------------------------------------------------- /CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Client.dll -------------------------------------------------------------------------------- /CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Sdk.Workflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Sdk.Workflow.dll -------------------------------------------------------------------------------- /CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmQueueGetNext/packages/Dynamics.Crm.Sdk.Clean.7.1.0.0/lib/Microsoft.Xrm.Sdk.dll -------------------------------------------------------------------------------- /CrmRegexTools/CrmRegexTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/CrmRegexTools.sln -------------------------------------------------------------------------------- /CrmRegexTools/CrmRegexTools/CrmRegexTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/CrmRegexTools/CrmRegexTools.csproj -------------------------------------------------------------------------------- /CrmRegexTools/CrmRegexTools/ExtractRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/CrmRegexTools/ExtractRegex.cs -------------------------------------------------------------------------------- /CrmRegexTools/CrmRegexTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/CrmRegexTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmRegexTools/CrmRegexTools/ValidateRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/CrmRegexTools/ValidateRegex.cs -------------------------------------------------------------------------------- /CrmRegexTools/CrmRegexTools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/CrmRegexTools/packages.config -------------------------------------------------------------------------------- /CrmRegexTools/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmRegexTools/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/Other Redistributable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/Other Redistributable.txt -------------------------------------------------------------------------------- /CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/Other Redistributable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/Other Redistributable.txt -------------------------------------------------------------------------------- /CrmRegexTools/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmRegexTools/packages/repositories.config -------------------------------------------------------------------------------- /CrmScheduledWorkflows/ScheduledWorkflows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/ScheduledWorkflows.sln -------------------------------------------------------------------------------- /CrmScheduledWorkflows/ScheduledWorkflows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/ScheduledWorkflows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmScheduledWorkflows/ScheduledWorkflows/ScheduledWorkflows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/ScheduledWorkflows/ScheduledWorkflows.csproj -------------------------------------------------------------------------------- /CrmScheduledWorkflows/ScheduledWorkflows/StartScheduledWorkflows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/ScheduledWorkflows/StartScheduledWorkflows.cs -------------------------------------------------------------------------------- /CrmScheduledWorkflows/ScheduledWorkflows/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/ScheduledWorkflows/app.config -------------------------------------------------------------------------------- /CrmScheduledWorkflows/ScheduledWorkflows/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/ScheduledWorkflows/packages.config -------------------------------------------------------------------------------- /CrmScheduledWorkflows/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmScheduledWorkflows/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmScheduledWorkflows/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmScheduledWorkflows/packages/repositories.config -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/console-app/socket_demo/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/console-app/socket_demo/packages/repositories.config -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo.sln -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/App.config -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/Program.cs -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/packages.config -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/socket_demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/console-app/socket_demo/socket_demo/socket_demo.csproj -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/web-pages/case-stream.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/web-pages/case-stream.htm -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/web-pages/contact-stream.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/web-pages/contact-stream.htm -------------------------------------------------------------------------------- /CrmStreamingNotifications/client-src/web-pages/raw-stream.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/client-src/web-pages/raw-stream.htm -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/app.js -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/.bin/wscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/.bin/wscat -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/.bin/wscat.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/.bin/wscat.cmd -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | .gitignore 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/.travis.yml -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/History.md -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/LICENSE -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/Makefile -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/Readme.md -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib'); 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/lib/client.js -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/lib/index.js -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/lib/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/lib/namespace.js -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/lib/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/lib/socket.js -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/Makefile -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/README.md -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/index.js -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/base64id/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/engine.io-parser/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/'); 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/engine.io-parser/node_modules/after/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .monitor 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/engine.io-parser/node_modules/base64-arraybuffer/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/engine.io-parser/node_modules/blob/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | blob.js 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/ws/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | .*.swp 4 | .lock-* 5 | build 6 | 7 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/ws/examples/fileapi/.npmignore: -------------------------------------------------------------------------------- 1 | uploaded 2 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/ws/node_modules/commander/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/ws/node_modules/commander/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/commander'); -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/ws/node_modules/nan/.index.js: -------------------------------------------------------------------------------- 1 | //noop -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/ws/node_modules/options/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | .*.swp 4 | .lock-* 5 | build/ 6 | 7 | test 8 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/engine.io/node_modules/ws/node_modules/tinycolor/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | .*.swp 4 | .lock-* 5 | build/ 6 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/has-binary-data/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-adapter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-adapter/node_modules/object-keys/.npmignore: -------------------------------------------------------------------------------- 1 | test/* 2 | 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | support 3 | .gitignore 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/'); 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/component-bind/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/component-emitter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/.npmignore: -------------------------------------------------------------------------------- 1 | support/ 2 | test 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/'); 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/component-inherit/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/engine.io-parser/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/'); 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/engine.io-parser/node_modules/after/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .monitor 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/engine.io-parser/node_modules/base64-arraybuffer/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/engine.io-parser/node_modules/blob/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | blob.js 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/has-cors/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/has-cors/node_modules/global/.npmignore: -------------------------------------------------------------------------------- 1 | /components 2 | /build 3 | /node_modules 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parsejson/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parsejson/node_modules/better-assert/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parsejson/node_modules/better-assert/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @echo "populate me" 4 | 5 | .PHONY: test -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parsejson/node_modules/better-assert/node_modules/callsite/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseqs/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseqs/node_modules/better-assert/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseqs/node_modules/better-assert/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @echo "populate me" 4 | 5 | .PHONY: test -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseqs/node_modules/better-assert/node_modules/callsite/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseuri/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseuri/node_modules/better-assert/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseuri/node_modules/better-assert/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @echo "populate me" 4 | 5 | .PHONY: test -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/parseuri/node_modules/better-assert/node_modules/callsite/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/ws/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | .*.swp 4 | .lock-* 5 | build 6 | 7 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/ws/examples/fileapi/.npmignore: -------------------------------------------------------------------------------- 1 | uploaded 2 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/ws/node_modules/commander/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/ws/node_modules/commander/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/commander'); -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/ws/node_modules/nan/.index.js: -------------------------------------------------------------------------------- 1 | //noop -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/ws/node_modules/tinycolor/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | .*.swp 4 | .lock-* 5 | build/ 6 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/engine.io-client/node_modules/xmlhttprequest/tests/testdata.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/has-binary/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/indexof/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/object-component/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/parseuri/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/parseuri/node_modules/better-assert/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/parseuri/node_modules/better-assert/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @echo "populate me" 4 | 5 | .PHONY: test -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/parseuri/node_modules/better-assert/node_modules/callsite/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-client/node_modules/to-array/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | *.err -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-parser/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | components 4 | 5 | test 6 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/node_modules/socket.io-parser/node_modules/component-emitter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | -------------------------------------------------------------------------------- /CrmStreamingNotifications/node-site/node_modules/socket.io/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/node-site/node_modules/socket.io/package.json -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/Node-Notifier.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/Node-Notifier.sln -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/Node-Notifier/Node-Notifier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/Node-Notifier/Node-Notifier.csproj -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/Node-Notifier/Notifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/Node-Notifier/Notifier.cs -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/Node-Notifier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/Node-Notifier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/Node-Notifier/ilmerge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/Node-Notifier/ilmerge.bat -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/Node-Notifier/node-notifier.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/Node-Notifier/node-notifier.snk -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/references/Microsoft.Xrm.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/references/Microsoft.Xrm.Client.dll -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/references/Microsoft.Xrm.Sdk.Workflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/references/Microsoft.Xrm.Sdk.Workflow.dll -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/references/Microsoft.Xrm.Sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/references/Microsoft.Xrm.Sdk.dll -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/references/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/references/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/references/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/references/WebSocket4Net.dll -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/references/websocket-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/references/websocket-sharp.dll -------------------------------------------------------------------------------- /CrmStreamingNotifications/plugin-src/tools/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmStreamingNotifications/plugin-src/tools/ILMerge.exe -------------------------------------------------------------------------------- /CrmTeamConnection/CrmTeamConnection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/CrmTeamConnection.sln -------------------------------------------------------------------------------- /CrmTeamConnection/CrmTeamConnection/AssignUserToAccessTeamByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/CrmTeamConnection/AssignUserToAccessTeamByName.cs -------------------------------------------------------------------------------- /CrmTeamConnection/CrmTeamConnection/CrmTeamConnection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/CrmTeamConnection/CrmTeamConnection.csproj -------------------------------------------------------------------------------- /CrmTeamConnection/CrmTeamConnection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/CrmTeamConnection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmTeamConnection/CrmTeamConnection/RemoveUserFromAccessTeamByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/CrmTeamConnection/RemoveUserFromAccessTeamByName.cs -------------------------------------------------------------------------------- /CrmTeamConnection/CrmTeamConnection/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/CrmTeamConnection/packages.config -------------------------------------------------------------------------------- /CrmTeamConnection/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmTeamConnection/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmTeamConnection/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmTeamConnection/packages/repositories.config -------------------------------------------------------------------------------- /CrmUnitTesting/CrmUnitTesting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/CrmUnitTesting.sln -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm.Test/DemoCrm.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm.Test/DemoCrm.Test.csproj -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm.Test/TestSample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm.Test/TestSample01.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm.Test/TestSample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm.Test/TestSample02.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm.Test/TestSample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm.Test/TestSample03.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm.Test/packages.config -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm/DemoCrm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm/DemoCrm.csproj -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm/RetrieveAttributeResponseWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm/RetrieveAttributeResponseWrapper.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm/Sample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm/Sample01.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm/Sample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm/Sample02.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm/Sample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm/Sample03.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrm/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrm/packages.config -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin.Test/DemoCrmPlugin.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin.Test/DemoCrmPlugin.Test.csproj -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin.Test/TestSamplePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin.Test/TestSamplePlugin.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin.Test/packages.config -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin/DemoCrmPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin/DemoCrmPlugin.csproj -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin/FollowupPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin/FollowupPlugin.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmPlugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmPlugin/packages.config -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/DemoCrmWorkflowActivities.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/DemoCrmWorkflowActivities.Test.csproj -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/TestGetLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/TestGetLocation.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/TestValidateRegex_Sample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/TestValidateRegex_Sample01.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/TestValidateRegex_Sample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/TestValidateRegex_Sample02.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/WebRequestTestClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/WebRequestTestClasses.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/map-response-good.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/map-response-good.xml -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities.Test/packages.config -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities/DemoCrmWorkflowActivities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities/DemoCrmWorkflowActivities.csproj -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities/GetLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities/GetLocation.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities/ValidateRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities/ValidateRegex.cs -------------------------------------------------------------------------------- /CrmUnitTesting/DemoCrmWorkflowActivities/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/DemoCrmWorkflowActivities/packages.config -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Microsoft.CrmSdk.CoreAssemblies.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/Other Redistributable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net40/Other Redistributable.txt -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/LicenseTerms.docx -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/Other Redistributable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Microsoft.CrmSdk.Workflow.6.1.1/lib/net45/Other Redistributable.txt -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Moq.4.2.1409.1722/Moq.4.2.1409.1722.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Moq.4.2.1409.1722/Moq.4.2.1409.1722.nupkg -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net35/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net35/Moq.dll -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net35/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net35/Moq.xml -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net40/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net40/Moq.dll -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net40/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/net40/Moq.xml -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.dll -------------------------------------------------------------------------------- /CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.xml -------------------------------------------------------------------------------- /CrmUnitTesting/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/CrmUnitTesting/packages/repositories.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/.gitignore: -------------------------------------------------------------------------------- 1 | !node_modules/* 2 | -------------------------------------------------------------------------------- /NodeClientDemo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/app.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/debug/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/debug/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/debug/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/debug/debug.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/debug/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/debug/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/debug/lib/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/debug/lib/debug.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/debug/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/Makefile -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie-signature/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/cookie/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/.npmignore: -------------------------------------------------------------------------------- 1 | benchmark 2 | src 3 | test 4 | .travis.yml 5 | bitcoin.png 6 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc1.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc16.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc16_ccitt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc16_ccitt.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc16_modbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc16_modbus.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc24.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc32.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc8.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc8_1wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/crc8_1wire.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/create.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/hex.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/lib/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/crc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/crc/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/depd/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/depd/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/depd/lib/compat/buffer-concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/depd/lib/compat/buffer-concat.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/depd/lib/compat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/depd/lib/compat/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/depd/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/on-headers/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/on-headers/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/on-headers/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/on-headers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/on-headers/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/on-headers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/on-headers/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/on-headers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/on-headers/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/on-headers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/on-headers/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/parseurl/.npmignore: -------------------------------------------------------------------------------- 1 | benchmark/ 2 | coverage/ 3 | test/ 4 | .travis.yml 5 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/parseurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/parseurl/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/parseurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/parseurl/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/parseurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/parseurl/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/uid-safe/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/uid-safe/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/uid-safe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/uid-safe/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/uid-safe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/uid-safe/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/uid-safe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/uid-safe/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/uid-safe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/uid-safe/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/utils-merge/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/utils-merge/.travis.yml -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/utils-merge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/utils-merge/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/utils-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/utils-merge/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/utils-merge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/utils-merge/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/node_modules/utils-merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/node_modules/utils-merge/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/session/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/session/cookie.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/session/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/session/memory.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/session/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/session/session.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express-session/session/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express-session/session/store.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/express'); 3 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/application.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/middleware/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/middleware/init.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/middleware/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/middleware/query.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/router/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/router/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/router/layer.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/router/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/router/route.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/mime-types/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/node_modules/negotiator/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/accepts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/accepts/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/content-disposition/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/content-disposition/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/content-disposition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/content-disposition/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/content-disposition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/content-disposition/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/content-disposition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/content-disposition/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/content-disposition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/content-disposition/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie-signature/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie-signature/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie-signature/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie-signature/Makefile -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie-signature/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie-signature/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie-signature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie-signature/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie-signature/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie-signature/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/cookie/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/lib/compat/buffer-concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/lib/compat/buffer-concat.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/lib/compat/callsite-tostring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/lib/compat/callsite-tostring.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/lib/compat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/lib/compat/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/depd/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/escape-html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/escape-html/Makefile -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/escape-html/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/escape-html/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/escape-html/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/escape-html/component.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/escape-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/escape-html/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/escape-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/escape-html/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/.npmignore: -------------------------------------------------------------------------------- 1 | benchmark 2 | src 3 | test 4 | .travis.yml 5 | bitcoin.png 6 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc1.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc16.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc16_ccitt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc16_ccitt.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc16_modbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc16_modbus.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc24.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc32.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc8.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc8_1wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/crc8_1wire.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/create.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/hex.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/lib/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/node_modules/crc/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/etag/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/finalhandler/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/finalhandler/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/finalhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/finalhandler/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/finalhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/finalhandler/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/finalhandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/finalhandler/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/finalhandler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/finalhandler/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/fresh/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/fresh/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/fresh/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/media-typer/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/media-typer/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/media-typer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/media-typer/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/media-typer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/media-typer/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/media-typer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/media-typer/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/media-typer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/media-typer/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/merge-descriptors/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/merge-descriptors/.npmignore -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/merge-descriptors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/merge-descriptors/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/merge-descriptors/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/merge-descriptors/component.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/merge-descriptors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/merge-descriptors/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/merge-descriptors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/merge-descriptors/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/methods/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/methods/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/methods/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/methods/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/methods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/methods/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/on-finished/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/on-finished/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/on-finished/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/on-finished/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/on-finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/on-finished/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/on-finished/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/on-finished/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/on-finished/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/on-finished/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/on-finished/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/on-finished/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/on-finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/on-finished/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/parseurl/.npmignore: -------------------------------------------------------------------------------- 1 | benchmark/ 2 | coverage/ 3 | test/ 4 | .travis.yml 5 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/parseurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/parseurl/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/parseurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/parseurl/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/parseurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/parseurl/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/path-to-regexp/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/path-to-regexp/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/path-to-regexp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/path-to-regexp/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/path-to-regexp/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/path-to-regexp/component.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/path-to-regexp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/path-to-regexp/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/path-to-regexp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/path-to-regexp/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/path-to-regexp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/path-to-regexp/test.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/ipaddr.js/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/ipaddr.js/Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/ipaddr.js/Cakefile -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/proxy-addr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/proxy-addr/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/.jshintrc -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/.npmignore -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/.travis.yml -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/CONTRIBUTING.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/Makefile -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/'); 2 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/lib/stringify.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/test/parse.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/qs/test/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/qs/test/stringify.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/range-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/range-parser/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/range-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/range-parser/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/range-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/range-parser/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/range-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/range-parser/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/range-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/range-parser/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/Readme.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/destroy/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/destroy/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/destroy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/destroy/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/mime.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/test.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/types/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/types/mime.types -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/types/node.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/mime/types/node.types -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/node_modules/ms/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/send/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/serve-static/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/serve-static/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/serve-static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/serve-static/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/serve-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/serve-static/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/serve-static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/serve-static/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/serve-static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/serve-static/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/type-is/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/type-is/HISTORY.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/type-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/type-is/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/type-is/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/type-is/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/type-is/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/type-is/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/type-is/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/type-is/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/utils-merge/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/utils-merge/.travis.yml -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/utils-merge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/utils-merge/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/utils-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/utils-merge/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/utils-merge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/utils-merge/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/utils-merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/utils-merge/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/vary/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/vary/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/vary/History.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/vary/README.md -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/vary/index.js -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/node_modules/vary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/node_modules/vary/package.json -------------------------------------------------------------------------------- /NodeClientDemo/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/node_modules/express/package.json -------------------------------------------------------------------------------- /NodeClientDemo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/NodeClientDemo/package.json -------------------------------------------------------------------------------- /OauthTokenMicroservice/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/OauthTokenMicroservice/app.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/README.md -------------------------------------------------------------------------------- /SSIS/Integration Services Project1/Integration Services Project1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/Integration Services Project1/Integration Services Project1.sln -------------------------------------------------------------------------------- /SSIS/Integration Services Project1/Integration Services Project1/Package.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/Integration Services Project1/Integration Services Project1/Package.dtsx -------------------------------------------------------------------------------- /SSIS/Integration Services Project1/Integration Services Project1/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/Integration Services Project1/Integration Services Project1/Project.params -------------------------------------------------------------------------------- /SSIS/ReferenceDataMover/ReferenceDataMover.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/ReferenceDataMover/ReferenceDataMover.sln -------------------------------------------------------------------------------- /SSIS/ReferenceDataMover/ReferenceDataMover/AccessTeamTemplateMover.dtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/ReferenceDataMover/ReferenceDataMover/AccessTeamTemplateMover.dtsx -------------------------------------------------------------------------------- /SSIS/ReferenceDataMover/ReferenceDataMover/Project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/ReferenceDataMover/ReferenceDataMover/Project.params -------------------------------------------------------------------------------- /SSIS/ReferenceDataMover/ReferenceDataMover/ReferenceDataMover.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/ReferenceDataMover/ReferenceDataMover/ReferenceDataMover.database -------------------------------------------------------------------------------- /SSIS/ReferenceDataMover/ReferenceDataMover/ReferenceDataMover.dtproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/SSIS/ReferenceDataMover/ReferenceDataMover/ReferenceDataMover.dtproj -------------------------------------------------------------------------------- /misc-code-samples/CrmUsernamePasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/misc-code-samples/CrmUsernamePasswordValidator.cs -------------------------------------------------------------------------------- /misc-code-samples/crmidentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/misc-code-samples/crmidentity.cs -------------------------------------------------------------------------------- /misc-code-samples/easydependentpicklists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasalexander/Crm-Sample-Code/HEAD/misc-code-samples/easydependentpicklists.js --------------------------------------------------------------------------------