@show-karma/karma-gap-sdk 0.4.8 → 0.4.9
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.
|
@@ -5,7 +5,19 @@ export interface _IProjectUpdate extends ProjectUpdate {
|
|
|
5
5
|
export interface IProjectUpdate {
|
|
6
6
|
title: string;
|
|
7
7
|
text: string;
|
|
8
|
+
startDate?: Date;
|
|
9
|
+
endDate?: Date;
|
|
8
10
|
type?: string;
|
|
11
|
+
grants?: string[];
|
|
12
|
+
indicators?: {
|
|
13
|
+
name: string;
|
|
14
|
+
indicatorId: string;
|
|
15
|
+
}[];
|
|
16
|
+
deliverables?: {
|
|
17
|
+
name: string;
|
|
18
|
+
proof: string;
|
|
19
|
+
description: string;
|
|
20
|
+
}[];
|
|
9
21
|
}
|
|
10
22
|
type IStatus = "verified";
|
|
11
23
|
export interface IProjectUpdateStatus {
|
|
@@ -81,8 +81,20 @@ export interface IProjectUpdateStatus extends IAttestationResponse {
|
|
|
81
81
|
}
|
|
82
82
|
export interface IProjectUpdate extends IAttestationResponse {
|
|
83
83
|
data: {
|
|
84
|
-
text: string;
|
|
85
84
|
title: string;
|
|
85
|
+
text: string;
|
|
86
|
+
startDate?: Date;
|
|
87
|
+
endDate?: Date;
|
|
88
|
+
grants?: string[];
|
|
89
|
+
indicators?: {
|
|
90
|
+
name: string;
|
|
91
|
+
indicatorId: string;
|
|
92
|
+
}[];
|
|
93
|
+
deliverables?: {
|
|
94
|
+
name: string;
|
|
95
|
+
proof: string;
|
|
96
|
+
description: string;
|
|
97
|
+
}[];
|
|
86
98
|
type: "project-update";
|
|
87
99
|
};
|
|
88
100
|
verified?: IProjectUpdateStatus[];
|