├── .CodeQL.yml ├── .azure-pipelines ├── azure-pipelines-release.yml └── build-template.yml ├── .github ├── CODEOWNERS └── workflows │ ├── autoAssignABTT.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── ThirdPartyNotice.txt ├── api ├── AlertApi.ts ├── BuildApi.ts ├── CIXApi.ts ├── ClientApiBases.ts ├── CoreApi.ts ├── DashboardApi.ts ├── ExtensionManagementApi.ts ├── FeatureManagementApi.ts ├── FileContainerApi.ts ├── FileContainerApiBase.ts ├── GalleryApi.ts ├── GalleryCompatHttpClientBase.ts ├── GitApi.ts ├── LocationsApi.ts ├── ManagementApi.ts ├── NotificationApi.ts ├── PipelinesApi.ts ├── PolicyApi.ts ├── ProfileApi.ts ├── ProjectAnalysisApi.ts ├── ReleaseApi.ts ├── SecurityRolesApi.ts ├── Serialization.ts ├── TaskAgentApi.ts ├── TaskAgentApiBase.ts ├── TaskApi.ts ├── TestApi.ts ├── TestPlanApi.ts ├── TestResultsApi.ts ├── TfvcApi.ts ├── VsoClient.ts ├── WebApi.ts ├── WikiApi.ts ├── WorkApi.ts ├── WorkItemTrackingApi.ts ├── WorkItemTrackingProcessApi.ts ├── WorkItemTrackingProcessDefinitionsApi.ts ├── handlers │ ├── basiccreds.ts │ ├── bearertoken.ts │ ├── ntlm.ts │ └── personalaccesstoken.ts ├── index.ts ├── interfaces │ ├── AccountsInterfaces.ts │ ├── AlertInterfaces.ts │ ├── BuildInterfaces.ts │ ├── CIXInterfaces.ts │ ├── ClientTraceInterfaces.ts │ ├── CommentsInterfaces.ts │ ├── ContributionsInterfaces.ts │ ├── CoreInterfaces.ts │ ├── CustomerIntelligenceInterfaces.ts │ ├── DashboardInterfaces.ts │ ├── DeploymentInterfaces.ts │ ├── DistributedTaskCommonInterfaces.ts │ ├── ExtensionManagementInterfaces.ts │ ├── FeatureAvailabilityInterfaces.ts │ ├── FeatureManagementInterfaces.ts │ ├── FileContainerInterfaces.ts │ ├── GalleryInterfaces.ts │ ├── GitInterfaces.ts │ ├── GraphInterfaces.ts │ ├── IdentitiesInterfaces.ts │ ├── LocationsInterfaces.ts │ ├── ManagementInterfaces.ts │ ├── NotificationInterfaces.ts │ ├── PipelinesInterfaces.ts │ ├── PolicyInterfaces.ts │ ├── ProfileInterfaces.ts │ ├── ProjectAnalysisInterfaces.ts │ ├── ProvenanceInterfaces.ts │ ├── ReleaseInterfaces.ts │ ├── SBOMInterfaces.ts │ ├── SecurityRolesInterfaces.ts │ ├── ServiceEndpointInterfaces.ts │ ├── ServiceHooksInterfaces.ts │ ├── TaskAgentInterfaces.ts │ ├── TestInterfaces.ts │ ├── TestPlanInterfaces.ts │ ├── TestResultsInterfaces.ts │ ├── TfvcInterfaces.ts │ ├── WikiInterfaces.ts │ ├── WorkInterfaces.ts │ ├── WorkItemTrackingInterfaces.ts │ ├── WorkItemTrackingProcessDefinitionsInterfaces.ts │ ├── WorkItemTrackingProcessInterfaces.ts │ └── common │ │ ├── FormInputInterfaces.ts │ │ ├── LicensingRuleInterfaces.ts │ │ ├── OperationsInterfaces.ts │ │ ├── System.ts │ │ ├── SystemDataInterfaces.ts │ │ ├── TfsInterfaces.ts │ │ ├── VSSInterfaces.ts │ │ └── VsoBaseInterfaces.ts └── opensource │ └── node-http-ntlm │ ├── ntlm.js │ └── readme.txt ├── azure-pipelines.yml ├── docs └── intellisense.png ├── generate-third-party-notice.js ├── issue_template.md ├── make.js ├── package.json ├── samples ├── .npmrc ├── build.ts ├── buildArtifact.ts ├── common.d.ts ├── common.ts ├── creation.ts ├── dashboard.ts ├── extensionManagement.ts ├── filecontainer.ts ├── git.ts ├── package-lock.json ├── package.json ├── pipelines.ts ├── policy.ts ├── profile.ts ├── projectAnalysis.ts ├── release.ts ├── run.ts ├── samples.json ├── task.ts ├── test.ts ├── testResults.ts ├── tsconfig.json ├── wiki.ts ├── work.ts └── workItemTracking.ts ├── test ├── .npmrc ├── package-lock.json ├── package.json └── units │ ├── tests.ts │ └── tsconfig.json └── tsconfig.json /.CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/.CodeQL.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/.azure-pipelines/azure-pipelines-release.yml -------------------------------------------------------------------------------- /.azure-pipelines/build-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/.azure-pipelines/build-template.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global rule: 2 | * @microsoft/azure-pipelines-tasks-and-agent 3 | -------------------------------------------------------------------------------- /.github/workflows/autoAssignABTT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/.github/workflows/autoAssignABTT.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/.npmrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/ThirdPartyNotice.txt -------------------------------------------------------------------------------- /api/AlertApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/AlertApi.ts -------------------------------------------------------------------------------- /api/BuildApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/BuildApi.ts -------------------------------------------------------------------------------- /api/CIXApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/CIXApi.ts -------------------------------------------------------------------------------- /api/ClientApiBases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/ClientApiBases.ts -------------------------------------------------------------------------------- /api/CoreApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/CoreApi.ts -------------------------------------------------------------------------------- /api/DashboardApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/DashboardApi.ts -------------------------------------------------------------------------------- /api/ExtensionManagementApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/ExtensionManagementApi.ts -------------------------------------------------------------------------------- /api/FeatureManagementApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/FeatureManagementApi.ts -------------------------------------------------------------------------------- /api/FileContainerApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/FileContainerApi.ts -------------------------------------------------------------------------------- /api/FileContainerApiBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/FileContainerApiBase.ts -------------------------------------------------------------------------------- /api/GalleryApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/GalleryApi.ts -------------------------------------------------------------------------------- /api/GalleryCompatHttpClientBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/GalleryCompatHttpClientBase.ts -------------------------------------------------------------------------------- /api/GitApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/GitApi.ts -------------------------------------------------------------------------------- /api/LocationsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/LocationsApi.ts -------------------------------------------------------------------------------- /api/ManagementApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/ManagementApi.ts -------------------------------------------------------------------------------- /api/NotificationApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/NotificationApi.ts -------------------------------------------------------------------------------- /api/PipelinesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/PipelinesApi.ts -------------------------------------------------------------------------------- /api/PolicyApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/PolicyApi.ts -------------------------------------------------------------------------------- /api/ProfileApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/ProfileApi.ts -------------------------------------------------------------------------------- /api/ProjectAnalysisApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/ProjectAnalysisApi.ts -------------------------------------------------------------------------------- /api/ReleaseApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/ReleaseApi.ts -------------------------------------------------------------------------------- /api/SecurityRolesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/SecurityRolesApi.ts -------------------------------------------------------------------------------- /api/Serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/Serialization.ts -------------------------------------------------------------------------------- /api/TaskAgentApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/TaskAgentApi.ts -------------------------------------------------------------------------------- /api/TaskAgentApiBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/TaskAgentApiBase.ts -------------------------------------------------------------------------------- /api/TaskApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/TaskApi.ts -------------------------------------------------------------------------------- /api/TestApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/TestApi.ts -------------------------------------------------------------------------------- /api/TestPlanApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/TestPlanApi.ts -------------------------------------------------------------------------------- /api/TestResultsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/TestResultsApi.ts -------------------------------------------------------------------------------- /api/TfvcApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/TfvcApi.ts -------------------------------------------------------------------------------- /api/VsoClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/VsoClient.ts -------------------------------------------------------------------------------- /api/WebApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/WebApi.ts -------------------------------------------------------------------------------- /api/WikiApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/WikiApi.ts -------------------------------------------------------------------------------- /api/WorkApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/WorkApi.ts -------------------------------------------------------------------------------- /api/WorkItemTrackingApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/WorkItemTrackingApi.ts -------------------------------------------------------------------------------- /api/WorkItemTrackingProcessApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/WorkItemTrackingProcessApi.ts -------------------------------------------------------------------------------- /api/WorkItemTrackingProcessDefinitionsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/WorkItemTrackingProcessDefinitionsApi.ts -------------------------------------------------------------------------------- /api/handlers/basiccreds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/handlers/basiccreds.ts -------------------------------------------------------------------------------- /api/handlers/bearertoken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/handlers/bearertoken.ts -------------------------------------------------------------------------------- /api/handlers/ntlm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/handlers/ntlm.ts -------------------------------------------------------------------------------- /api/handlers/personalaccesstoken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/handlers/personalaccesstoken.ts -------------------------------------------------------------------------------- /api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/index.ts -------------------------------------------------------------------------------- /api/interfaces/AccountsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/AccountsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/AlertInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/AlertInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/BuildInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/BuildInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/CIXInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/CIXInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ClientTraceInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ClientTraceInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/CommentsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/CommentsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ContributionsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ContributionsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/CoreInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/CoreInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/CustomerIntelligenceInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/CustomerIntelligenceInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/DashboardInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/DashboardInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/DeploymentInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/DeploymentInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/DistributedTaskCommonInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/DistributedTaskCommonInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ExtensionManagementInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ExtensionManagementInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/FeatureAvailabilityInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/FeatureAvailabilityInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/FeatureManagementInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/FeatureManagementInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/FileContainerInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/FileContainerInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/GalleryInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/GalleryInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/GitInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/GitInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/GraphInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/GraphInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/IdentitiesInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/IdentitiesInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/LocationsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/LocationsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ManagementInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ManagementInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/NotificationInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/NotificationInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/PipelinesInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/PipelinesInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/PolicyInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/PolicyInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ProfileInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ProfileInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ProjectAnalysisInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ProjectAnalysisInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ProvenanceInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ProvenanceInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ReleaseInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ReleaseInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/SBOMInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/SBOMInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/SecurityRolesInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/SecurityRolesInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ServiceEndpointInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ServiceEndpointInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/ServiceHooksInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/ServiceHooksInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/TaskAgentInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/TaskAgentInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/TestInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/TestInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/TestPlanInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/TestPlanInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/TestResultsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/TestResultsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/TfvcInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/TfvcInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/WikiInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/WikiInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/WorkInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/WorkInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/WorkItemTrackingInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/WorkItemTrackingInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/WorkItemTrackingProcessDefinitionsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/WorkItemTrackingProcessDefinitionsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/WorkItemTrackingProcessInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/WorkItemTrackingProcessInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/common/FormInputInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/FormInputInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/common/LicensingRuleInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/LicensingRuleInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/common/OperationsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/OperationsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/common/System.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/System.ts -------------------------------------------------------------------------------- /api/interfaces/common/SystemDataInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/SystemDataInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/common/TfsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/TfsInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/common/VSSInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/VSSInterfaces.ts -------------------------------------------------------------------------------- /api/interfaces/common/VsoBaseInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/interfaces/common/VsoBaseInterfaces.ts -------------------------------------------------------------------------------- /api/opensource/node-http-ntlm/ntlm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/opensource/node-http-ntlm/ntlm.js -------------------------------------------------------------------------------- /api/opensource/node-http-ntlm/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/api/opensource/node-http-ntlm/readme.txt -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/docs/intellisense.png -------------------------------------------------------------------------------- /generate-third-party-notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/generate-third-party-notice.js -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/issue_template.md -------------------------------------------------------------------------------- /make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/make.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/package.json -------------------------------------------------------------------------------- /samples/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/.npmrc -------------------------------------------------------------------------------- /samples/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/build.ts -------------------------------------------------------------------------------- /samples/buildArtifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/buildArtifact.ts -------------------------------------------------------------------------------- /samples/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/common.d.ts -------------------------------------------------------------------------------- /samples/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/common.ts -------------------------------------------------------------------------------- /samples/creation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/creation.ts -------------------------------------------------------------------------------- /samples/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/dashboard.ts -------------------------------------------------------------------------------- /samples/extensionManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/extensionManagement.ts -------------------------------------------------------------------------------- /samples/filecontainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/filecontainer.ts -------------------------------------------------------------------------------- /samples/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/git.ts -------------------------------------------------------------------------------- /samples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/package-lock.json -------------------------------------------------------------------------------- /samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/package.json -------------------------------------------------------------------------------- /samples/pipelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/pipelines.ts -------------------------------------------------------------------------------- /samples/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/policy.ts -------------------------------------------------------------------------------- /samples/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/profile.ts -------------------------------------------------------------------------------- /samples/projectAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/projectAnalysis.ts -------------------------------------------------------------------------------- /samples/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/release.ts -------------------------------------------------------------------------------- /samples/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/run.ts -------------------------------------------------------------------------------- /samples/samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/samples.json -------------------------------------------------------------------------------- /samples/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/task.ts -------------------------------------------------------------------------------- /samples/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/test.ts -------------------------------------------------------------------------------- /samples/testResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/testResults.ts -------------------------------------------------------------------------------- /samples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/tsconfig.json -------------------------------------------------------------------------------- /samples/wiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/wiki.ts -------------------------------------------------------------------------------- /samples/work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/work.ts -------------------------------------------------------------------------------- /samples/workItemTracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/samples/workItemTracking.ts -------------------------------------------------------------------------------- /test/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/test/.npmrc -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/test/package.json -------------------------------------------------------------------------------- /test/units/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/test/units/tests.ts -------------------------------------------------------------------------------- /test/units/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/test/units/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-node-api/HEAD/tsconfig.json --------------------------------------------------------------------------------