@glowlabs-org/utils 0.2.90 → 0.2.92
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.
|
@@ -190,6 +190,7 @@ export interface KickstarterDetails extends Kickstarter {
|
|
|
190
190
|
contributorsCount: number;
|
|
191
191
|
farmCount: number;
|
|
192
192
|
solarFarmApplications: SolarFarmApplication[];
|
|
193
|
+
sponsoredFarms: SponsoredFarm[];
|
|
193
194
|
}
|
|
194
195
|
export interface CommitKickstarterPayload {
|
|
195
196
|
wallet: string;
|
|
@@ -232,7 +233,7 @@ export interface SponsoredFarm {
|
|
|
232
233
|
protocolDepositPayerWallet: string | null;
|
|
233
234
|
builtEpoch: number;
|
|
234
235
|
isPurchased: boolean;
|
|
235
|
-
builtAt
|
|
236
|
+
builtAt: string;
|
|
236
237
|
sponsorWallet: string | null;
|
|
237
238
|
afterInstallPictures: {
|
|
238
239
|
id: string;
|
|
@@ -359,7 +360,7 @@ export interface WalletFarmInfo {
|
|
|
359
360
|
protocolDepositPayerWallet: string | null;
|
|
360
361
|
builtEpoch: number;
|
|
361
362
|
isPurchased: boolean;
|
|
362
|
-
builtAt
|
|
363
|
+
builtAt: string;
|
|
363
364
|
sponsorWallet: string | null;
|
|
364
365
|
}
|
|
365
366
|
export interface WalletDetails {
|
package/package.json
CHANGED
package/src/lib/types/index.ts
CHANGED
|
@@ -251,6 +251,7 @@ export interface KickstarterDetails extends Kickstarter {
|
|
|
251
251
|
contributorsCount: number;
|
|
252
252
|
farmCount: number;
|
|
253
253
|
solarFarmApplications: SolarFarmApplication[];
|
|
254
|
+
sponsoredFarms: SponsoredFarm[];
|
|
254
255
|
}
|
|
255
256
|
|
|
256
257
|
export interface CommitKickstarterPayload {
|
|
@@ -299,7 +300,7 @@ export interface SponsoredFarm {
|
|
|
299
300
|
protocolDepositPayerWallet: string | null;
|
|
300
301
|
builtEpoch: number;
|
|
301
302
|
isPurchased: boolean;
|
|
302
|
-
builtAt
|
|
303
|
+
builtAt: string;
|
|
303
304
|
sponsorWallet: string | null;
|
|
304
305
|
afterInstallPictures: {
|
|
305
306
|
id: string;
|
|
@@ -451,7 +452,7 @@ export interface WalletFarmInfo {
|
|
|
451
452
|
protocolDepositPayerWallet: string | null;
|
|
452
453
|
builtEpoch: number;
|
|
453
454
|
isPurchased: boolean;
|
|
454
|
-
builtAt
|
|
455
|
+
builtAt: string; // ISO 8601
|
|
455
456
|
sponsorWallet: string | null;
|
|
456
457
|
}
|
|
457
458
|
|