@glowlabs-org/utils 0.2.67 → 0.2.69
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.
|
@@ -207,7 +207,6 @@ export interface SponsoredFarm {
|
|
|
207
207
|
name: string;
|
|
208
208
|
location: string;
|
|
209
209
|
certifiedInstallerId: string | null;
|
|
210
|
-
ownerId: string;
|
|
211
210
|
kwhCapacity: string;
|
|
212
211
|
solarPanelsQuantity: number;
|
|
213
212
|
adjustedWeeklyCarbonCredits: string;
|
|
@@ -218,6 +217,12 @@ export interface SponsoredFarm {
|
|
|
218
217
|
isPurchased: boolean;
|
|
219
218
|
builtAt?: string;
|
|
220
219
|
purchaserWallet: string | null;
|
|
220
|
+
afterInstallPictures: {
|
|
221
|
+
id: string;
|
|
222
|
+
name: string;
|
|
223
|
+
url: string;
|
|
224
|
+
isShowingSolarPanels: boolean;
|
|
225
|
+
}[];
|
|
221
226
|
}
|
|
222
227
|
export interface RegionDetails extends RegionWithMetadata {
|
|
223
228
|
sponsoredFarms: SponsoredFarm[];
|
|
@@ -207,7 +207,6 @@ export interface SponsoredFarm {
|
|
|
207
207
|
name: string;
|
|
208
208
|
location: string;
|
|
209
209
|
certifiedInstallerId: string | null;
|
|
210
|
-
ownerId: string;
|
|
211
210
|
kwhCapacity: string;
|
|
212
211
|
solarPanelsQuantity: number;
|
|
213
212
|
adjustedWeeklyCarbonCredits: string;
|
|
@@ -218,6 +217,12 @@ export interface SponsoredFarm {
|
|
|
218
217
|
isPurchased: boolean;
|
|
219
218
|
builtAt?: string;
|
|
220
219
|
purchaserWallet: string | null;
|
|
220
|
+
afterInstallPictures: {
|
|
221
|
+
id: string;
|
|
222
|
+
name: string;
|
|
223
|
+
url: string;
|
|
224
|
+
isShowingSolarPanels: boolean;
|
|
225
|
+
}[];
|
|
221
226
|
}
|
|
222
227
|
export interface RegionDetails extends RegionWithMetadata {
|
|
223
228
|
sponsoredFarms: SponsoredFarm[];
|
package/package.json
CHANGED
package/src/lib/types/index.ts
CHANGED
|
@@ -259,7 +259,6 @@ export interface SponsoredFarm {
|
|
|
259
259
|
name: string;
|
|
260
260
|
location: string;
|
|
261
261
|
certifiedInstallerId: string | null;
|
|
262
|
-
ownerId: string;
|
|
263
262
|
kwhCapacity: string;
|
|
264
263
|
solarPanelsQuantity: number;
|
|
265
264
|
adjustedWeeklyCarbonCredits: string;
|
|
@@ -270,6 +269,12 @@ export interface SponsoredFarm {
|
|
|
270
269
|
isPurchased: boolean;
|
|
271
270
|
builtAt?: string;
|
|
272
271
|
purchaserWallet: string | null;
|
|
272
|
+
afterInstallPictures: {
|
|
273
|
+
id: string;
|
|
274
|
+
name: string;
|
|
275
|
+
url: string;
|
|
276
|
+
isShowingSolarPanels: boolean;
|
|
277
|
+
}[];
|
|
273
278
|
}
|
|
274
279
|
|
|
275
280
|
export interface RegionDetails extends RegionWithMetadata {
|