@parra/parra-js-sdk 0.2.120 → 0.2.121
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 +7 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -433,6 +433,13 @@ export interface FeedbackFormStub {
|
|
|
433
433
|
description?: string | null;
|
|
434
434
|
}
|
|
435
435
|
export interface FeedbackFormResponse {
|
|
436
|
+
id: string;
|
|
437
|
+
created_at: string;
|
|
438
|
+
updated_at: string;
|
|
439
|
+
deleted_at?: string | null;
|
|
440
|
+
title: string;
|
|
441
|
+
description?: string | null;
|
|
442
|
+
data: FeedbackFormData;
|
|
436
443
|
}
|
|
437
444
|
export interface FeedbackForm {
|
|
438
445
|
id: string;
|