@crimson-education/sdk 0.3.9 → 0.3.10

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.
@@ -261,7 +261,6 @@ class CrimsonClient {
261
261
  if (this.appTenant) {
262
262
  headers["X-App-Tenant"] = this.appTenant;
263
263
  }
264
- console.log(`tenantDomain = ${this.tenantDomain}`);
265
264
  if (this.tenantDomain) {
266
265
  headers["x-tenant-domain"] = this.tenantDomain;
267
266
  }
@@ -41,6 +41,8 @@ const normalizeTask = (raw) => {
41
41
  resources: raw.resources,
42
42
  mission: raw.mission,
43
43
  linkId: raw.linkId,
44
+ finishedAt: raw.finishedAt,
45
+ createdAt: raw.createdAt,
44
46
  };
45
47
  };
46
48
  class TasksApi {
@@ -110,6 +110,7 @@ export interface Task {
110
110
  title: string;
111
111
  linkId?: string;
112
112
  };
113
+ createdAt?: string;
113
114
  }
114
115
  export interface Mission {
115
116
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crimson-education/sdk",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "Crimson SDK for accessing Crimson App APIs",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",