@parra/parra-js-sdk 0.2.77 → 0.2.78
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.
- package/dist/ParraAPI.d.ts +3 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -187,6 +187,7 @@ export interface TenantCollectionResponse {
|
|
|
187
187
|
data: Array<Tenant>;
|
|
188
188
|
}
|
|
189
189
|
export interface TenantMetrics {
|
|
190
|
+
team_member_invitation_count: number;
|
|
190
191
|
team_member_count: number;
|
|
191
192
|
child_tenant_count: number;
|
|
192
193
|
}
|
|
@@ -357,6 +358,7 @@ export interface ImageQuestionOption {
|
|
|
357
358
|
title?: string | null;
|
|
358
359
|
value: string;
|
|
359
360
|
id: string;
|
|
361
|
+
image_asset_url: string;
|
|
360
362
|
}
|
|
361
363
|
export interface ImageQuestionBody {
|
|
362
364
|
options: Array<ImageQuestionOption>;
|
|
@@ -448,6 +450,7 @@ export interface ImageQuestionMetricsOption {
|
|
|
448
450
|
title?: string | null;
|
|
449
451
|
value: string;
|
|
450
452
|
id: string;
|
|
453
|
+
image_asset_url: string;
|
|
451
454
|
answer_count: number;
|
|
452
455
|
}
|
|
453
456
|
export interface NotificationRecipient {
|