@ttt-productions/ttt-core 0.9.0 → 0.10.0
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.
- package/dist/doc-schemas/commissions.d.ts +4 -4
- package/dist/doc-schemas/messaging.d.ts +12 -12
- package/dist/doc-schemas/messaging.d.ts.map +1 -1
- package/dist/doc-schemas/messaging.js +8 -2
- package/dist/doc-schemas/messaging.js.map +1 -1
- package/dist/doc-schemas/registry.d.ts +18 -18
- package/dist/doc-schemas/social.d.ts +2 -2
- package/dist/doc-schemas/work-project.d.ts +0 -61
- package/dist/doc-schemas/work-project.d.ts.map +1 -1
- package/dist/doc-schemas/work-project.js +0 -10
- package/dist/doc-schemas/work-project.js.map +1 -1
- package/dist/types/work-project.d.ts +1 -1
- package/dist/types/work-project.d.ts.map +1 -1
- package/dist/types/work-project.js.map +1 -1
- package/package.json +1 -1
|
@@ -143,7 +143,7 @@ export declare const CommissionProposalSchema: z.ZodObject<{
|
|
|
143
143
|
acceptedOn: z.ZodOptional<z.ZodNumber>;
|
|
144
144
|
rejectedAt: z.ZodOptional<z.ZodNumber>;
|
|
145
145
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
-
status: "open" | "rejected" | "
|
|
146
|
+
status: "open" | "rejected" | "invited" | "accepted";
|
|
147
147
|
createdOn: number;
|
|
148
148
|
workProjectId: string;
|
|
149
149
|
createdBy: {
|
|
@@ -152,14 +152,14 @@ export declare const CommissionProposalSchema: z.ZodObject<{
|
|
|
152
152
|
commissionListingId: string;
|
|
153
153
|
commissionProposalId: string;
|
|
154
154
|
proposalText: string;
|
|
155
|
-
guildInviteId?: string | undefined;
|
|
156
155
|
proposalFileUrl?: string | undefined;
|
|
157
156
|
proposalFileType?: string | undefined;
|
|
157
|
+
guildInviteId?: string | undefined;
|
|
158
158
|
invitedOn?: number | undefined;
|
|
159
159
|
acceptedOn?: number | undefined;
|
|
160
160
|
rejectedAt?: number | undefined;
|
|
161
161
|
}, {
|
|
162
|
-
status: "open" | "rejected" | "
|
|
162
|
+
status: "open" | "rejected" | "invited" | "accepted";
|
|
163
163
|
createdOn: number;
|
|
164
164
|
workProjectId: string;
|
|
165
165
|
createdBy: {
|
|
@@ -168,9 +168,9 @@ export declare const CommissionProposalSchema: z.ZodObject<{
|
|
|
168
168
|
commissionListingId: string;
|
|
169
169
|
commissionProposalId: string;
|
|
170
170
|
proposalText: string;
|
|
171
|
-
guildInviteId?: string | undefined;
|
|
172
171
|
proposalFileUrl?: string | undefined;
|
|
173
172
|
proposalFileType?: string | undefined;
|
|
173
|
+
guildInviteId?: string | undefined;
|
|
174
174
|
invitedOn?: number | undefined;
|
|
175
175
|
acceptedOn?: number | undefined;
|
|
176
176
|
rejectedAt?: number | undefined;
|
|
@@ -44,7 +44,6 @@ export declare const GuildInviteConversationSchema: z.ZodObject<{
|
|
|
44
44
|
guildInviteId: z.ZodString;
|
|
45
45
|
workProjectId: z.ZodString;
|
|
46
46
|
relatedUserIds: z.ZodArray<z.ZodString, "many">;
|
|
47
|
-
workProjectTitle: z.ZodString;
|
|
48
47
|
workProject: z.ZodObject<{
|
|
49
48
|
workProjectId: z.ZodString;
|
|
50
49
|
workingTitle: z.ZodString;
|
|
@@ -61,7 +60,7 @@ export declare const GuildInviteConversationSchema: z.ZodObject<{
|
|
|
61
60
|
workingTitle: string;
|
|
62
61
|
workingDescription: string;
|
|
63
62
|
}>;
|
|
64
|
-
|
|
63
|
+
createdBy: z.ZodObject<{
|
|
65
64
|
uid: z.ZodString;
|
|
66
65
|
}, "strip", z.ZodTypeAny, {
|
|
67
66
|
uid: string;
|
|
@@ -200,6 +199,7 @@ export declare const GuildInviteConversationSchema: z.ZodObject<{
|
|
|
200
199
|
status: z.ZodEnum<["pending", "accepted", "declined", "cancelled", "finalized", "error"]>;
|
|
201
200
|
createdAt: z.ZodNumber;
|
|
202
201
|
updatedAt: z.ZodNumber;
|
|
202
|
+
lastUpdatedAt: z.ZodNumber;
|
|
203
203
|
finalizedAt: z.ZodOptional<z.ZodNumber>;
|
|
204
204
|
senderConfirmed: z.ZodBoolean;
|
|
205
205
|
recipientConfirmed: z.ZodBoolean;
|
|
@@ -215,8 +215,12 @@ export declare const GuildInviteConversationSchema: z.ZodObject<{
|
|
|
215
215
|
workingTitle: string;
|
|
216
216
|
workingDescription: string;
|
|
217
217
|
};
|
|
218
|
-
|
|
218
|
+
createdBy: {
|
|
219
|
+
uid: string;
|
|
220
|
+
};
|
|
221
|
+
lastUpdatedAt: number;
|
|
219
222
|
stakeSharesOffered: number;
|
|
223
|
+
guildInviteId: string;
|
|
220
224
|
source: {
|
|
221
225
|
type: "standalone";
|
|
222
226
|
} | {
|
|
@@ -246,10 +250,6 @@ export declare const GuildInviteConversationSchema: z.ZodObject<{
|
|
|
246
250
|
};
|
|
247
251
|
};
|
|
248
252
|
relatedUserIds: string[];
|
|
249
|
-
workProjectTitle: string;
|
|
250
|
-
workSteward: {
|
|
251
|
-
uid: string;
|
|
252
|
-
};
|
|
253
253
|
sender: {
|
|
254
254
|
uid: string;
|
|
255
255
|
};
|
|
@@ -272,8 +272,12 @@ export declare const GuildInviteConversationSchema: z.ZodObject<{
|
|
|
272
272
|
workingTitle: string;
|
|
273
273
|
workingDescription: string;
|
|
274
274
|
};
|
|
275
|
-
|
|
275
|
+
createdBy: {
|
|
276
|
+
uid: string;
|
|
277
|
+
};
|
|
278
|
+
lastUpdatedAt: number;
|
|
276
279
|
stakeSharesOffered: number;
|
|
280
|
+
guildInviteId: string;
|
|
277
281
|
source: {
|
|
278
282
|
type: "standalone";
|
|
279
283
|
} | {
|
|
@@ -303,10 +307,6 @@ export declare const GuildInviteConversationSchema: z.ZodObject<{
|
|
|
303
307
|
};
|
|
304
308
|
};
|
|
305
309
|
relatedUserIds: string[];
|
|
306
|
-
workProjectTitle: string;
|
|
307
|
-
workSteward: {
|
|
308
|
-
uid: string;
|
|
309
|
-
};
|
|
310
310
|
sender: {
|
|
311
311
|
uid: string;
|
|
312
312
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messaging.d.ts","sourceRoot":"","sources":["../../src/doc-schemas/messaging.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAejC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"messaging.d.ts","sourceRoot":"","sources":["../../src/doc-schemas/messaging.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAejC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAQtE,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBxC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEpF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY9B,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAQhE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW9B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
|
@@ -22,18 +22,23 @@ export const GuildChatChannelSchema = z.object({
|
|
|
22
22
|
messageCount: z.number(),
|
|
23
23
|
isArchived: z.boolean(),
|
|
24
24
|
});
|
|
25
|
+
// The guildInviteConversations/{guildInviteId} doc as actually written by inviteUserToGuild
|
|
26
|
+
// (and mutated by the accept/decline/finalize/cancel callables). This is the single source of
|
|
27
|
+
// truth — the former duplicate `GuildInviteSchema` in ./work-project.ts was a stale, narrower
|
|
28
|
+
// shape that the callable bypassed with an `as unknown as` cast. The inviter is `createdBy`
|
|
29
|
+
// (== `sender`); there is no separate `workSteward`/`workProjectTitle` field (the title lives in
|
|
30
|
+
// `workProject.workingTitle`).
|
|
25
31
|
export const GuildInviteConversationSchema = z.object({
|
|
26
32
|
guildInviteId: z.string(),
|
|
27
33
|
workProjectId: z.string(),
|
|
28
34
|
relatedUserIds: z.array(z.string()),
|
|
29
|
-
workProjectTitle: z.string(),
|
|
30
35
|
workProject: z.object({
|
|
31
36
|
workProjectId: z.string(),
|
|
32
37
|
workingTitle: z.string(),
|
|
33
38
|
type: z.string(),
|
|
34
39
|
workingDescription: z.string(),
|
|
35
40
|
}),
|
|
36
|
-
|
|
41
|
+
createdBy: userRefSchema,
|
|
37
42
|
sender: userRefSchema,
|
|
38
43
|
recipient: userRefSchema,
|
|
39
44
|
stakeSharesOffered: z.number(),
|
|
@@ -41,6 +46,7 @@ export const GuildInviteConversationSchema = z.object({
|
|
|
41
46
|
status: z.enum(['pending', 'accepted', 'declined', 'cancelled', 'finalized', 'error']),
|
|
42
47
|
createdAt: z.number(),
|
|
43
48
|
updatedAt: z.number(),
|
|
49
|
+
lastUpdatedAt: z.number(),
|
|
44
50
|
finalizedAt: z.number().optional(),
|
|
45
51
|
senderConfirmed: z.boolean(),
|
|
46
52
|
recipientConfirmed: z.boolean(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messaging.js","sourceRoot":"","sources":["../../src/doc-schemas/messaging.ts"],"names":[],"mappings":"AAAA,8EAA8E;AAC9E,sFAAsF;AACtF,qFAAqF;AACrF,8BAA8B;AAE9B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACpF,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAE3E,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AAEpD,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,sBAAsB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC3C,cAAc,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACnC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,iFAAiF;IACjF,2EAA2E;IAC3E,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;CACxB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,CAAC,MAAM,CAAC;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,cAAc,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACnC,
|
|
1
|
+
{"version":3,"file":"messaging.js","sourceRoot":"","sources":["../../src/doc-schemas/messaging.ts"],"names":[],"mappings":"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"}
|
|
@@ -923,7 +923,6 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
923
923
|
guildInviteId: z.ZodString;
|
|
924
924
|
workProjectId: z.ZodString;
|
|
925
925
|
relatedUserIds: z.ZodArray<z.ZodString, "many">;
|
|
926
|
-
workProjectTitle: z.ZodString;
|
|
927
926
|
workProject: z.ZodObject<{
|
|
928
927
|
workProjectId: z.ZodString;
|
|
929
928
|
workingTitle: z.ZodString;
|
|
@@ -940,7 +939,7 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
940
939
|
workingTitle: string;
|
|
941
940
|
workingDescription: string;
|
|
942
941
|
}>;
|
|
943
|
-
|
|
942
|
+
createdBy: z.ZodObject<{
|
|
944
943
|
uid: z.ZodString;
|
|
945
944
|
}, "strip", z.ZodTypeAny, {
|
|
946
945
|
uid: string;
|
|
@@ -1079,6 +1078,7 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1079
1078
|
status: z.ZodEnum<["pending", "accepted", "declined", "cancelled", "finalized", "error"]>;
|
|
1080
1079
|
createdAt: z.ZodNumber;
|
|
1081
1080
|
updatedAt: z.ZodNumber;
|
|
1081
|
+
lastUpdatedAt: z.ZodNumber;
|
|
1082
1082
|
finalizedAt: z.ZodOptional<z.ZodNumber>;
|
|
1083
1083
|
senderConfirmed: z.ZodBoolean;
|
|
1084
1084
|
recipientConfirmed: z.ZodBoolean;
|
|
@@ -1094,8 +1094,12 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1094
1094
|
workingTitle: string;
|
|
1095
1095
|
workingDescription: string;
|
|
1096
1096
|
};
|
|
1097
|
-
|
|
1097
|
+
createdBy: {
|
|
1098
|
+
uid: string;
|
|
1099
|
+
};
|
|
1100
|
+
lastUpdatedAt: number;
|
|
1098
1101
|
stakeSharesOffered: number;
|
|
1102
|
+
guildInviteId: string;
|
|
1099
1103
|
source: {
|
|
1100
1104
|
type: "standalone";
|
|
1101
1105
|
} | {
|
|
@@ -1125,10 +1129,6 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1125
1129
|
};
|
|
1126
1130
|
};
|
|
1127
1131
|
relatedUserIds: string[];
|
|
1128
|
-
workProjectTitle: string;
|
|
1129
|
-
workSteward: {
|
|
1130
|
-
uid: string;
|
|
1131
|
-
};
|
|
1132
1132
|
sender: {
|
|
1133
1133
|
uid: string;
|
|
1134
1134
|
};
|
|
@@ -1151,8 +1151,12 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1151
1151
|
workingTitle: string;
|
|
1152
1152
|
workingDescription: string;
|
|
1153
1153
|
};
|
|
1154
|
-
|
|
1154
|
+
createdBy: {
|
|
1155
|
+
uid: string;
|
|
1156
|
+
};
|
|
1157
|
+
lastUpdatedAt: number;
|
|
1155
1158
|
stakeSharesOffered: number;
|
|
1159
|
+
guildInviteId: string;
|
|
1156
1160
|
source: {
|
|
1157
1161
|
type: "standalone";
|
|
1158
1162
|
} | {
|
|
@@ -1182,10 +1186,6 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1182
1186
|
};
|
|
1183
1187
|
};
|
|
1184
1188
|
relatedUserIds: string[];
|
|
1185
|
-
workProjectTitle: string;
|
|
1186
|
-
workSteward: {
|
|
1187
|
-
uid: string;
|
|
1188
|
-
};
|
|
1189
1189
|
sender: {
|
|
1190
1190
|
uid: string;
|
|
1191
1191
|
};
|
|
@@ -1487,21 +1487,21 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1487
1487
|
}, "strip", z.ZodTypeAny, {
|
|
1488
1488
|
totalPledgePayments: number;
|
|
1489
1489
|
pledgePaymentCount: number;
|
|
1490
|
-
lastUpdatedAt: number;
|
|
1491
1490
|
totalPledgePaymentsByType: {
|
|
1492
1491
|
card: number;
|
|
1493
1492
|
paypal: number;
|
|
1494
1493
|
crypto: number;
|
|
1495
1494
|
};
|
|
1495
|
+
lastUpdatedAt: number;
|
|
1496
1496
|
}, {
|
|
1497
1497
|
totalPledgePayments: number;
|
|
1498
1498
|
pledgePaymentCount: number;
|
|
1499
|
-
lastUpdatedAt: number;
|
|
1500
1499
|
totalPledgePaymentsByType: {
|
|
1501
1500
|
card: number;
|
|
1502
1501
|
paypal: number;
|
|
1503
1502
|
crypto: number;
|
|
1504
1503
|
};
|
|
1504
|
+
lastUpdatedAt: number;
|
|
1505
1505
|
}>;
|
|
1506
1506
|
readonly 'thresholdItems/{thresholdItemId}': z.ZodObject<{
|
|
1507
1507
|
thresholdItemId: z.ZodString;
|
|
@@ -1727,7 +1727,7 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1727
1727
|
acceptedOn: z.ZodOptional<z.ZodNumber>;
|
|
1728
1728
|
rejectedAt: z.ZodOptional<z.ZodNumber>;
|
|
1729
1729
|
}, "strip", z.ZodTypeAny, {
|
|
1730
|
-
status: "open" | "rejected" | "
|
|
1730
|
+
status: "open" | "rejected" | "invited" | "accepted";
|
|
1731
1731
|
createdOn: number;
|
|
1732
1732
|
workProjectId: string;
|
|
1733
1733
|
createdBy: {
|
|
@@ -1736,14 +1736,14 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1736
1736
|
commissionListingId: string;
|
|
1737
1737
|
commissionProposalId: string;
|
|
1738
1738
|
proposalText: string;
|
|
1739
|
-
guildInviteId?: string | undefined;
|
|
1740
1739
|
proposalFileUrl?: string | undefined;
|
|
1741
1740
|
proposalFileType?: string | undefined;
|
|
1741
|
+
guildInviteId?: string | undefined;
|
|
1742
1742
|
invitedOn?: number | undefined;
|
|
1743
1743
|
acceptedOn?: number | undefined;
|
|
1744
1744
|
rejectedAt?: number | undefined;
|
|
1745
1745
|
}, {
|
|
1746
|
-
status: "open" | "rejected" | "
|
|
1746
|
+
status: "open" | "rejected" | "invited" | "accepted";
|
|
1747
1747
|
createdOn: number;
|
|
1748
1748
|
workProjectId: string;
|
|
1749
1749
|
createdBy: {
|
|
@@ -1752,9 +1752,9 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
1752
1752
|
commissionListingId: string;
|
|
1753
1753
|
commissionProposalId: string;
|
|
1754
1754
|
proposalText: string;
|
|
1755
|
-
guildInviteId?: string | undefined;
|
|
1756
1755
|
proposalFileUrl?: string | undefined;
|
|
1757
1756
|
proposalFileType?: string | undefined;
|
|
1757
|
+
guildInviteId?: string | undefined;
|
|
1758
1758
|
invitedOn?: number | undefined;
|
|
1759
1759
|
acceptedOn?: number | undefined;
|
|
1760
1760
|
rejectedAt?: number | undefined;
|
|
@@ -218,21 +218,21 @@ export declare const PledgePaymentsSummarySchema: z.ZodObject<{
|
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
totalPledgePayments: number;
|
|
220
220
|
pledgePaymentCount: number;
|
|
221
|
-
lastUpdatedAt: number;
|
|
222
221
|
totalPledgePaymentsByType: {
|
|
223
222
|
card: number;
|
|
224
223
|
paypal: number;
|
|
225
224
|
crypto: number;
|
|
226
225
|
};
|
|
226
|
+
lastUpdatedAt: number;
|
|
227
227
|
}, {
|
|
228
228
|
totalPledgePayments: number;
|
|
229
229
|
pledgePaymentCount: number;
|
|
230
|
-
lastUpdatedAt: number;
|
|
231
230
|
totalPledgePaymentsByType: {
|
|
232
231
|
card: number;
|
|
233
232
|
paypal: number;
|
|
234
233
|
crypto: number;
|
|
235
234
|
};
|
|
235
|
+
lastUpdatedAt: number;
|
|
236
236
|
}>;
|
|
237
237
|
export type PledgePaymentsSummary = z.infer<typeof PledgePaymentsSummarySchema>;
|
|
238
238
|
export declare const SquareStreetzLikeSchema: z.ZodObject<{
|
|
@@ -256,65 +256,4 @@ export declare const WorkRealmSchema: z.ZodObject<{
|
|
|
256
256
|
foundingWorkProjectId: string;
|
|
257
257
|
}>;
|
|
258
258
|
export type WorkRealm = z.infer<typeof WorkRealmSchema>;
|
|
259
|
-
export declare const GuildInviteSchema: z.ZodObject<{
|
|
260
|
-
guildInviteId: z.ZodString;
|
|
261
|
-
createdBy: z.ZodObject<{
|
|
262
|
-
uid: z.ZodString;
|
|
263
|
-
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
uid: string;
|
|
265
|
-
}, {
|
|
266
|
-
uid: string;
|
|
267
|
-
}>;
|
|
268
|
-
createdOn: z.ZodNumber;
|
|
269
|
-
message: z.ZodString;
|
|
270
|
-
workProject: z.ZodObject<{
|
|
271
|
-
workProjectId: z.ZodString;
|
|
272
|
-
type: z.ZodString;
|
|
273
|
-
workingDescription: z.ZodString;
|
|
274
|
-
workingTitle: z.ZodString;
|
|
275
|
-
}, "strict", z.ZodTypeAny, {
|
|
276
|
-
type: string;
|
|
277
|
-
workProjectId: string;
|
|
278
|
-
workingTitle: string;
|
|
279
|
-
workingDescription: string;
|
|
280
|
-
}, {
|
|
281
|
-
type: string;
|
|
282
|
-
workProjectId: string;
|
|
283
|
-
workingTitle: string;
|
|
284
|
-
workingDescription: string;
|
|
285
|
-
}>;
|
|
286
|
-
status: z.ZodEnum<["pending", "accepted", "declined"]>;
|
|
287
|
-
lastUpdatedAt: z.ZodNumber;
|
|
288
|
-
}, "strip", z.ZodTypeAny, {
|
|
289
|
-
message: string;
|
|
290
|
-
status: "pending" | "accepted" | "declined";
|
|
291
|
-
createdOn: number;
|
|
292
|
-
workProject: {
|
|
293
|
-
type: string;
|
|
294
|
-
workProjectId: string;
|
|
295
|
-
workingTitle: string;
|
|
296
|
-
workingDescription: string;
|
|
297
|
-
};
|
|
298
|
-
createdBy: {
|
|
299
|
-
uid: string;
|
|
300
|
-
};
|
|
301
|
-
guildInviteId: string;
|
|
302
|
-
lastUpdatedAt: number;
|
|
303
|
-
}, {
|
|
304
|
-
message: string;
|
|
305
|
-
status: "pending" | "accepted" | "declined";
|
|
306
|
-
createdOn: number;
|
|
307
|
-
workProject: {
|
|
308
|
-
type: string;
|
|
309
|
-
workProjectId: string;
|
|
310
|
-
workingTitle: string;
|
|
311
|
-
workingDescription: string;
|
|
312
|
-
};
|
|
313
|
-
createdBy: {
|
|
314
|
-
uid: string;
|
|
315
|
-
};
|
|
316
|
-
guildInviteId: string;
|
|
317
|
-
lastUpdatedAt: number;
|
|
318
|
-
}>;
|
|
319
|
-
export type GuildInvite = z.infer<typeof GuildInviteSchema>;
|
|
320
259
|
//# sourceMappingURL=work-project.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-project.d.ts","sourceRoot":"","sources":["../../src/doc-schemas/work-project.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"work-project.d.ts","sourceRoot":"","sources":["../../src/doc-schemas/work-project.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,qBAAqB,mCAAiC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,eAAO,MAAM,mBAAmB;;;;;;;IAO9B;;;;OAIG;;;;;;;;;;;;;;;;;;EAEH,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;EAKpC,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ1B,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,eAAO,MAAM,wBAAwB;;;;;;;;;GAGpC,CAAC;AACF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAchC,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAGpE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAGxE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa1B,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
// creator is `foundingArtisanUid` (locked rename from the old `createdByUid`; Founding Artisan).
|
|
10
10
|
import { z } from 'zod';
|
|
11
11
|
import { HALL_WING_TYPE_KEYS, WORK_PROJECT_TYPE_KEYS } from '../types/content.js';
|
|
12
|
-
import { ShortWorkProjectSchema } from '../media/atoms.js';
|
|
13
12
|
import { isGuildStandingId } from '../permissions/index.js';
|
|
14
13
|
const guildStandingIdSchema = z.custom(isGuildStandingId);
|
|
15
14
|
const userRefSchema = z.object({ uid: z.string() });
|
|
@@ -92,13 +91,4 @@ export const WorkRealmSchema = z.object({
|
|
|
92
91
|
createdOn: z.number(),
|
|
93
92
|
updatedOn: z.number(),
|
|
94
93
|
});
|
|
95
|
-
export const GuildInviteSchema = z.object({
|
|
96
|
-
guildInviteId: z.string(),
|
|
97
|
-
createdBy: userRefSchema,
|
|
98
|
-
createdOn: z.number(),
|
|
99
|
-
message: z.string(),
|
|
100
|
-
workProject: ShortWorkProjectSchema,
|
|
101
|
-
status: z.enum(['pending', 'accepted', 'declined']),
|
|
102
|
-
lastUpdatedAt: z.number(),
|
|
103
|
-
});
|
|
104
94
|
//# sourceMappingURL=work-project.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-project.js","sourceRoot":"","sources":["../../src/doc-schemas/work-project.ts"],"names":[],"mappings":"AAAA,mFAAmF;AACnF,mFAAmF;AACnF,2FAA2F;AAC3F,qFAAqF;AACrF,+DAA+D;AAC/D,EAAE;AACF,uFAAuF;AACvF,4FAA4F;AAC5F,iGAAiG;AAEjG,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAClF,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"work-project.js","sourceRoot":"","sources":["../../src/doc-schemas/work-project.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type { ShortWorkProject } from '../media/atoms.js';
|
|
2
2
|
import type { GuildmateUser } from '../doc-schemas/work-project.js';
|
|
3
|
-
export type { GuildmateStatus, GuildmateUser, PublicGuildmateUser, WorkAsset, PendingStakeShares, FullWorkProject, PublicWorkProject, WorkRealm,
|
|
3
|
+
export type { GuildmateStatus, GuildmateUser, PublicGuildmateUser, WorkAsset, PendingStakeShares, FullWorkProject, PublicWorkProject, WorkRealm, } from '../doc-schemas/work-project.js';
|
|
4
4
|
/**
|
|
5
5
|
* Single source of truth for which GuildmateUser fields the public mirror copies,
|
|
6
6
|
* so the mirror trigger can't drift from the PublicGuildmateUser shape.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-project.d.ts","sourceRoot":"","sources":["../../src/types/work-project.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAE1D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAEpE,YAAY,EACV,eAAe,EACf,aAAa,EACb,mBAAmB,EACnB,SAAS,EACT,kBAAkB,EAClB,eAAe,EACf,iBAAiB,EACjB,SAAS,
|
|
1
|
+
{"version":3,"file":"work-project.d.ts","sourceRoot":"","sources":["../../src/types/work-project.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAE1D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAEpE,YAAY,EACV,eAAe,EACf,aAAa,EACb,mBAAmB,EACnB,SAAS,EACT,kBAAkB,EAClB,eAAe,EACf,iBAAiB,EACjB,SAAS,GACV,MAAM,gCAAgC,CAAC;AAExC;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE,SAAS,CAAC,MAAM,aAAa,CAAC,EAKxE,CAAC;AAKF,YAAY,EAAE,mBAAmB,EAAE,uBAAuB,EAAE,MAAM,qCAAqC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-project.js","sourceRoot":"","sources":["../../src/types/work-project.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"work-project.js","sourceRoot":"","sources":["../../src/types/work-project.ts"],"names":[],"mappings":"AAgBA;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAqC;IAC5E,KAAK;IACL,kBAAkB;IAClB,UAAU;IACV,QAAQ;CACT,CAAC"}
|