@show-karma/karma-gap-sdk 0.3.35 → 0.3.37

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.
@@ -103,6 +103,10 @@ export interface IProjectDetails extends IAttestationResponse {
103
103
  data: {
104
104
  title: string;
105
105
  description: string;
106
+ problem?: string;
107
+ solution?: string;
108
+ missionSummary?: string;
109
+ locationOfImpact?: string;
106
110
  imageURL: string;
107
111
  links?: ExternalLink[];
108
112
  tags?: ITag[];
@@ -89,6 +89,10 @@ export declare class Tag extends Attestation<ITag> implements ITag {
89
89
  export interface IProjectDetails {
90
90
  title: string;
91
91
  description: string;
92
+ problem?: string;
93
+ solution?: string;
94
+ missionSummary?: string;
95
+ locationOfImpact?: string;
92
96
  imageURL: string;
93
97
  links?: ExternalLink;
94
98
  tags?: ITag[];
@@ -103,6 +107,10 @@ export interface IProjectDetails {
103
107
  export declare class ProjectDetails extends Attestation<IProjectDetails> implements IProjectDetails {
104
108
  title: string;
105
109
  description: string;
110
+ problem?: string;
111
+ solution?: string;
112
+ missionSummary?: string;
113
+ locationOfImpact?: string;
106
114
  imageURL: string;
107
115
  links: ExternalLink;
108
116
  tags: ITag[];
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.3.35",
6
+ "version": "0.3.37",
7
7
  "description": "Simple and easy interface between EAS and Karma GAP.",
8
8
  "main": "./index.js",
9
9
  "author": "KarmaHQ",