@itentialopensource/adapter-azure_devops 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/adapter.js +5 -5
- package/package.json +1 -1
- package/refs?service=git-upload-pack +0 -0
package/CHANGELOG.md
CHANGED
package/adapter.js
CHANGED
|
@@ -4206,7 +4206,7 @@ class AzureDevops extends AdapterBaseCl {
|
|
|
4206
4206
|
const queryParamsAvailable = { filename, apiVersion };
|
|
4207
4207
|
const queryParams = {};
|
|
4208
4208
|
const pathVars = [organization, project, repositoryId];
|
|
4209
|
-
const bodyVars =
|
|
4209
|
+
const bodyVars = body;
|
|
4210
4210
|
|
|
4211
4211
|
// loop in template. long callback arg name to avoid identifier conflicts
|
|
4212
4212
|
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
|
@@ -6494,7 +6494,7 @@ class AzureDevops extends AdapterBaseCl {
|
|
|
6494
6494
|
const queryParamsAvailable = { apiVersion };
|
|
6495
6495
|
const queryParams = {};
|
|
6496
6496
|
const pathVars = [organization, project, repositoryId, pullRequestId, fileName];
|
|
6497
|
-
const bodyVars =
|
|
6497
|
+
const bodyVars = body;
|
|
6498
6498
|
|
|
6499
6499
|
// loop in template. long callback arg name to avoid identifier conflicts
|
|
6500
6500
|
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
|
@@ -8634,7 +8634,7 @@ class AzureDevops extends AdapterBaseCl {
|
|
|
8634
8634
|
const queryParamsAvailable = { apiVersion };
|
|
8635
8635
|
const queryParams = {};
|
|
8636
8636
|
const pathVars = [organization, project, repositoryId, pullRequestId];
|
|
8637
|
-
const bodyVars =
|
|
8637
|
+
const bodyVars = body;
|
|
8638
8638
|
|
|
8639
8639
|
// loop in template. long callback arg name to avoid identifier conflicts
|
|
8640
8640
|
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
|
@@ -8964,7 +8964,7 @@ class AzureDevops extends AdapterBaseCl {
|
|
|
8964
8964
|
const queryParamsAvailable = { apiVersion };
|
|
8965
8965
|
const queryParams = {};
|
|
8966
8966
|
const pathVars = [organization, project, repositoryId, pullRequestId];
|
|
8967
|
-
const bodyVars =
|
|
8967
|
+
const bodyVars = body;
|
|
8968
8968
|
|
|
8969
8969
|
// loop in template. long callback arg name to avoid identifier conflicts
|
|
8970
8970
|
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
|
@@ -12243,7 +12243,7 @@ class AzureDevops extends AdapterBaseCl {
|
|
|
12243
12243
|
const queryParamsAvailable = { projectId, apiVersion };
|
|
12244
12244
|
const queryParams = {};
|
|
12245
12245
|
const pathVars = [organization, project, repositoryId];
|
|
12246
|
-
const bodyVars =
|
|
12246
|
+
const bodyVars = body;
|
|
12247
12247
|
|
|
12248
12248
|
// loop in template. long callback arg name to avoid identifier conflicts
|
|
12249
12249
|
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
package/package.json
CHANGED
|
Binary file
|