@parra/parra-js-sdk 0.2.77 → 0.2.79

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.
@@ -177,6 +177,7 @@ export interface Tenant {
177
177
  is_test: boolean;
178
178
  parent_tenant_id?: string | null;
179
179
  entitlements?: Array<Entitlement> | null;
180
+ metrics?: TenantMetrics | null;
180
181
  }
181
182
  export declare type TenantListResponse = Array<Tenant>;
182
183
  export interface TenantCollectionResponse {
@@ -187,6 +188,7 @@ export interface TenantCollectionResponse {
187
188
  data: Array<Tenant>;
188
189
  }
189
190
  export interface TenantMetrics {
191
+ team_member_invitation_count: number;
190
192
  team_member_count: number;
191
193
  child_tenant_count: number;
192
194
  }
@@ -357,6 +359,7 @@ export interface ImageQuestionOption {
357
359
  title?: string | null;
358
360
  value: string;
359
361
  id: string;
362
+ image_asset_url: string;
360
363
  }
361
364
  export interface ImageQuestionBody {
362
365
  options: Array<ImageQuestionOption>;
@@ -448,6 +451,7 @@ export interface ImageQuestionMetricsOption {
448
451
  title?: string | null;
449
452
  value: string;
450
453
  id: string;
454
+ image_asset_url: string;
451
455
  answer_count: number;
452
456
  }
453
457
  export interface NotificationRecipient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.2.77",
3
+ "version": "0.2.79",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",