@glowlabs-org/utils 0.2.30 → 0.2.31
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.
|
@@ -117,7 +117,7 @@ export interface RegionMetadata {
|
|
|
117
117
|
isUs: boolean;
|
|
118
118
|
flag?: string;
|
|
119
119
|
}
|
|
120
|
-
export type KickstarterStatus = "draft" | "
|
|
120
|
+
export type KickstarterStatus = "draft" | "collecting-support" | "completed" | "expired" | "cancelled" | "suspended";
|
|
121
121
|
export interface CreateKickstarterPayload {
|
|
122
122
|
creatorWallet: string;
|
|
123
123
|
regionName: string;
|
|
@@ -117,7 +117,7 @@ export interface RegionMetadata {
|
|
|
117
117
|
isUs: boolean;
|
|
118
118
|
flag?: string;
|
|
119
119
|
}
|
|
120
|
-
export type KickstarterStatus = "draft" | "
|
|
120
|
+
export type KickstarterStatus = "draft" | "collecting-support" | "completed" | "expired" | "cancelled" | "suspended";
|
|
121
121
|
export interface CreateKickstarterPayload {
|
|
122
122
|
creatorWallet: string;
|
|
123
123
|
regionName: string;
|
package/package.json
CHANGED
package/src/lib/types/index.ts
CHANGED
|
@@ -155,9 +155,7 @@ export interface RegionMetadata {
|
|
|
155
155
|
// ----------------------------- Kickstarters ---------------------------------
|
|
156
156
|
export type KickstarterStatus =
|
|
157
157
|
| "draft"
|
|
158
|
-
| "awaiting-kickoff"
|
|
159
158
|
| "collecting-support"
|
|
160
|
-
| "ready-to-activate"
|
|
161
159
|
| "completed"
|
|
162
160
|
| "expired"
|
|
163
161
|
| "cancelled"
|