@devrev/typescript-sdk 1.1.70 → 1.1.72

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.
@@ -62,7 +62,6 @@ function timelineCreateGet() {
62
62
  expect(create.created_date).toBe(get.created_date);
63
63
  expect(create.display_id).toBe(get.display_id);
64
64
  expect(create.snap_kit_body).toBe(get.snap_kit_body);
65
- expect(create.type).toBe(get.type);
66
65
  expect(create.body).toBe('test comment');
67
66
  expect(create.body_type).toBe('text');
68
67
  return create.id;
@@ -92,7 +91,6 @@ function timelineUpdateGet(id) {
92
91
  expect(updateComment.body).toBe(getComment.body);
93
92
  expect(updateComment.body).toBe('test comment updated');
94
93
  expect(updateComment.artifacts).toBe(getComment.artifacts);
95
- expect(updateComment.body).toBe(getComment.body);
96
94
  expect(updateComment.body_type).toBe(getComment.body_type);
97
95
  if (updateComment.created_by !== undefined && getComment.created_by !== undefined) {
98
96
  expect(updateComment.created_by).toStrictEqual(getComment.created_by);
@@ -104,7 +102,6 @@ function timelineUpdateGet(id) {
104
102
  }
105
103
  expect(updateComment.modified_date).toBe(getComment.modified_date);
106
104
  expect(updateComment.snap_kit_body).toBe(getComment.snap_kit_body);
107
- expect(updateComment.type).toBe(getComment.type);
108
105
  }
109
106
  catch (error) {
110
107
  console.log(error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devrev/typescript-sdk",
3
- "version": "1.1.70",
3
+ "version": "1.1.72",
4
4
  "description": "## SDK Generation",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {