@parra/parra-js-sdk 0.3.212 → 0.3.214

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.
@@ -1293,7 +1293,7 @@ export interface UpdateTicketRequestBody {
1293
1293
  is_public?: boolean;
1294
1294
  estimated_start_date?: string | null;
1295
1295
  estimated_completion_date?: string | null;
1296
- icon?: TicketIcon;
1296
+ icon?: TicketIcon | null;
1297
1297
  is_featured?: boolean;
1298
1298
  featured_title?: string | null;
1299
1299
  featured_description?: string | null;
@@ -1311,7 +1311,7 @@ export interface BulkUpdateTicketsRequestBody {
1311
1311
  is_public?: boolean;
1312
1312
  estimated_start_date?: string | null;
1313
1313
  estimated_completion_date?: string | null;
1314
- icon?: TicketIcon;
1314
+ icon?: TicketIcon | null;
1315
1315
  is_featured?: boolean;
1316
1316
  featured_title?: string | null;
1317
1317
  featured_description?: string | null;
@@ -2318,6 +2318,8 @@ export interface TeamMember {
2318
2318
  export interface UpdateTenantUserRequestBody {
2319
2319
  identity?: string | null;
2320
2320
  name?: string | null;
2321
+ first_name?: string | null;
2322
+ last_name?: string | null;
2321
2323
  properties?: object | null;
2322
2324
  }
2323
2325
  export interface CreateTenantUserRequestBody {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.212",
3
+ "version": "0.3.214",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",