@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 CHANGED
@@ -1,4 +1,12 @@
1
1
 
2
+ ## 0.1.7 [01-26-2023]
3
+
4
+ * ADAPT-2530 - Change body format
5
+
6
+ See merge request itentialopensource/adapters/devops-netops/adapter-azure_devops!7
7
+
8
+ ---
9
+
2
10
  ## 0.1.6 [12-01-2022]
3
11
 
4
12
  * ADAPT-2476
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 = { body };
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 = { body };
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 = { body };
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 = { body };
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 = { body };
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-azure_devops",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "This adapter integrates with system described as: Azure DevOps.",
5
5
  "main": "adapter.js",
6
6
  "systemName": "Microsoft Azure DevOps",
Binary file