@overmap-ai/core 1.0.71-fields.8 → 1.0.71-fields.9

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.
@@ -5277,15 +5277,7 @@ class IssueTypeService extends BaseApiService {
5277
5277
  const promise = this.enqueueRequest({
5278
5278
  method: HttpMethod.POST,
5279
5279
  url: "/issue-types/",
5280
- // Sending only whats needed here
5281
- payload: {
5282
- offline_id: offlineIssueType.offline_id,
5283
- submitted_at: offlineIssueType.submitted_at,
5284
- icon: offlineIssueType.icon,
5285
- color: offlineIssueType.color,
5286
- name: offlineIssueType.name,
5287
- description: offlineIssueType.description
5288
- },
5280
+ payload: offlineIssueType,
5289
5281
  blockers: [],
5290
5282
  blocks: [offlineIssueType.offline_id]
5291
5283
  });