@longdotxyz/shared 0.0.151 → 0.0.152
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.
|
@@ -884,6 +884,7 @@ declare const BuilderSchema: z.ZodObject<{
|
|
|
884
884
|
};
|
|
885
885
|
fetchedAt: string;
|
|
886
886
|
}>>;
|
|
887
|
+
referral_code: z.ZodString;
|
|
887
888
|
created_at: z.ZodString;
|
|
888
889
|
updated_at: z.ZodString;
|
|
889
890
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -965,6 +966,7 @@ declare const BuilderSchema: z.ZodObject<{
|
|
|
965
966
|
};
|
|
966
967
|
fetchedAt: string;
|
|
967
968
|
} | null;
|
|
969
|
+
referral_code: string;
|
|
968
970
|
updated_at: string;
|
|
969
971
|
}, {
|
|
970
972
|
id: string;
|
|
@@ -1045,6 +1047,7 @@ declare const BuilderSchema: z.ZodObject<{
|
|
|
1045
1047
|
};
|
|
1046
1048
|
fetchedAt: string;
|
|
1047
1049
|
} | null;
|
|
1050
|
+
referral_code: string;
|
|
1048
1051
|
updated_at: string;
|
|
1049
1052
|
}>;
|
|
1050
1053
|
declare const BuilderResponseSchema: z.ZodObject<{
|
|
@@ -1494,6 +1497,7 @@ declare const BuilderResponseSchema: z.ZodObject<{
|
|
|
1494
1497
|
};
|
|
1495
1498
|
fetchedAt: string;
|
|
1496
1499
|
}>>;
|
|
1500
|
+
referral_code: z.ZodString;
|
|
1497
1501
|
created_at: z.ZodString;
|
|
1498
1502
|
updated_at: z.ZodString;
|
|
1499
1503
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1575,6 +1579,7 @@ declare const BuilderResponseSchema: z.ZodObject<{
|
|
|
1575
1579
|
};
|
|
1576
1580
|
fetchedAt: string;
|
|
1577
1581
|
} | null;
|
|
1582
|
+
referral_code: string;
|
|
1578
1583
|
updated_at: string;
|
|
1579
1584
|
}, {
|
|
1580
1585
|
id: string;
|
|
@@ -1655,6 +1660,7 @@ declare const BuilderResponseSchema: z.ZodObject<{
|
|
|
1655
1660
|
};
|
|
1656
1661
|
fetchedAt: string;
|
|
1657
1662
|
} | null;
|
|
1663
|
+
referral_code: string;
|
|
1658
1664
|
updated_at: string;
|
|
1659
1665
|
}>;
|
|
1660
1666
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1737,6 +1743,7 @@ declare const BuilderResponseSchema: z.ZodObject<{
|
|
|
1737
1743
|
};
|
|
1738
1744
|
fetchedAt: string;
|
|
1739
1745
|
} | null;
|
|
1746
|
+
referral_code: string;
|
|
1740
1747
|
updated_at: string;
|
|
1741
1748
|
};
|
|
1742
1749
|
}, {
|
|
@@ -1819,6 +1826,7 @@ declare const BuilderResponseSchema: z.ZodObject<{
|
|
|
1819
1826
|
};
|
|
1820
1827
|
fetchedAt: string;
|
|
1821
1828
|
} | null;
|
|
1829
|
+
referral_code: string;
|
|
1822
1830
|
updated_at: string;
|
|
1823
1831
|
};
|
|
1824
1832
|
}>;
|
|
@@ -2707,6 +2715,25 @@ declare const CoinWithTypeSchema: z.ZodObject<{
|
|
|
2707
2715
|
numeraire: string;
|
|
2708
2716
|
created_at: string;
|
|
2709
2717
|
}>;
|
|
2718
|
+
declare const ReferralProfileSchema: z.ZodObject<{
|
|
2719
|
+
id: z.ZodString;
|
|
2720
|
+
wallet_address: z.ZodNullable<z.ZodString>;
|
|
2721
|
+
github_username: z.ZodNullable<z.ZodString>;
|
|
2722
|
+
x_username: z.ZodNullable<z.ZodString>;
|
|
2723
|
+
created_at: z.ZodString;
|
|
2724
|
+
}, "strip", z.ZodTypeAny, {
|
|
2725
|
+
id: string;
|
|
2726
|
+
created_at: string;
|
|
2727
|
+
wallet_address: string | null;
|
|
2728
|
+
github_username: string | null;
|
|
2729
|
+
x_username: string | null;
|
|
2730
|
+
}, {
|
|
2731
|
+
id: string;
|
|
2732
|
+
created_at: string;
|
|
2733
|
+
wallet_address: string | null;
|
|
2734
|
+
github_username: string | null;
|
|
2735
|
+
x_username: string | null;
|
|
2736
|
+
}>;
|
|
2710
2737
|
declare const builderContract: {
|
|
2711
2738
|
register: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, z.ZodObject<{
|
|
2712
2739
|
result: z.ZodObject<{
|
|
@@ -3155,6 +3182,7 @@ declare const builderContract: {
|
|
|
3155
3182
|
};
|
|
3156
3183
|
fetchedAt: string;
|
|
3157
3184
|
}>>;
|
|
3185
|
+
referral_code: z.ZodString;
|
|
3158
3186
|
created_at: z.ZodString;
|
|
3159
3187
|
updated_at: z.ZodString;
|
|
3160
3188
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3236,6 +3264,7 @@ declare const builderContract: {
|
|
|
3236
3264
|
};
|
|
3237
3265
|
fetchedAt: string;
|
|
3238
3266
|
} | null;
|
|
3267
|
+
referral_code: string;
|
|
3239
3268
|
updated_at: string;
|
|
3240
3269
|
}, {
|
|
3241
3270
|
id: string;
|
|
@@ -3316,6 +3345,7 @@ declare const builderContract: {
|
|
|
3316
3345
|
};
|
|
3317
3346
|
fetchedAt: string;
|
|
3318
3347
|
} | null;
|
|
3348
|
+
referral_code: string;
|
|
3319
3349
|
updated_at: string;
|
|
3320
3350
|
}>;
|
|
3321
3351
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3398,6 +3428,7 @@ declare const builderContract: {
|
|
|
3398
3428
|
};
|
|
3399
3429
|
fetchedAt: string;
|
|
3400
3430
|
} | null;
|
|
3431
|
+
referral_code: string;
|
|
3401
3432
|
updated_at: string;
|
|
3402
3433
|
};
|
|
3403
3434
|
}, {
|
|
@@ -3480,6 +3511,7 @@ declare const builderContract: {
|
|
|
3480
3511
|
};
|
|
3481
3512
|
fetchedAt: string;
|
|
3482
3513
|
} | null;
|
|
3514
|
+
referral_code: string;
|
|
3483
3515
|
updated_at: string;
|
|
3484
3516
|
};
|
|
3485
3517
|
}>, Record<never, never>, Record<never, never>>;
|
|
@@ -5610,5 +5642,101 @@ declare const builderContract: {
|
|
|
5610
5642
|
created_at: string;
|
|
5611
5643
|
}[];
|
|
5612
5644
|
}>, Record<never, never>, Record<never, never>>;
|
|
5645
|
+
listReferrals: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
5646
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
5647
|
+
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
5648
|
+
}, "strip", z.ZodTypeAny, {
|
|
5649
|
+
limit: number;
|
|
5650
|
+
offset: number;
|
|
5651
|
+
}, {
|
|
5652
|
+
limit?: number | undefined;
|
|
5653
|
+
offset?: number | undefined;
|
|
5654
|
+
}>, z.ZodObject<{
|
|
5655
|
+
result: z.ZodObject<{
|
|
5656
|
+
referrals: z.ZodArray<z.ZodObject<{
|
|
5657
|
+
id: z.ZodString;
|
|
5658
|
+
wallet_address: z.ZodNullable<z.ZodString>;
|
|
5659
|
+
github_username: z.ZodNullable<z.ZodString>;
|
|
5660
|
+
x_username: z.ZodNullable<z.ZodString>;
|
|
5661
|
+
created_at: z.ZodString;
|
|
5662
|
+
}, "strip", z.ZodTypeAny, {
|
|
5663
|
+
id: string;
|
|
5664
|
+
created_at: string;
|
|
5665
|
+
wallet_address: string | null;
|
|
5666
|
+
github_username: string | null;
|
|
5667
|
+
x_username: string | null;
|
|
5668
|
+
}, {
|
|
5669
|
+
id: string;
|
|
5670
|
+
created_at: string;
|
|
5671
|
+
wallet_address: string | null;
|
|
5672
|
+
github_username: string | null;
|
|
5673
|
+
x_username: string | null;
|
|
5674
|
+
}>, "many">;
|
|
5675
|
+
total: z.ZodNumber;
|
|
5676
|
+
}, "strip", z.ZodTypeAny, {
|
|
5677
|
+
referrals: {
|
|
5678
|
+
id: string;
|
|
5679
|
+
created_at: string;
|
|
5680
|
+
wallet_address: string | null;
|
|
5681
|
+
github_username: string | null;
|
|
5682
|
+
x_username: string | null;
|
|
5683
|
+
}[];
|
|
5684
|
+
total: number;
|
|
5685
|
+
}, {
|
|
5686
|
+
referrals: {
|
|
5687
|
+
id: string;
|
|
5688
|
+
created_at: string;
|
|
5689
|
+
wallet_address: string | null;
|
|
5690
|
+
github_username: string | null;
|
|
5691
|
+
x_username: string | null;
|
|
5692
|
+
}[];
|
|
5693
|
+
total: number;
|
|
5694
|
+
}>;
|
|
5695
|
+
}, "strip", z.ZodTypeAny, {
|
|
5696
|
+
result: {
|
|
5697
|
+
referrals: {
|
|
5698
|
+
id: string;
|
|
5699
|
+
created_at: string;
|
|
5700
|
+
wallet_address: string | null;
|
|
5701
|
+
github_username: string | null;
|
|
5702
|
+
x_username: string | null;
|
|
5703
|
+
}[];
|
|
5704
|
+
total: number;
|
|
5705
|
+
};
|
|
5706
|
+
}, {
|
|
5707
|
+
result: {
|
|
5708
|
+
referrals: {
|
|
5709
|
+
id: string;
|
|
5710
|
+
created_at: string;
|
|
5711
|
+
wallet_address: string | null;
|
|
5712
|
+
github_username: string | null;
|
|
5713
|
+
x_username: string | null;
|
|
5714
|
+
}[];
|
|
5715
|
+
total: number;
|
|
5716
|
+
};
|
|
5717
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
5718
|
+
applyReferralCode: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
5719
|
+
referral_code: z.ZodString;
|
|
5720
|
+
}, "strip", z.ZodTypeAny, {
|
|
5721
|
+
referral_code: string;
|
|
5722
|
+
}, {
|
|
5723
|
+
referral_code: string;
|
|
5724
|
+
}>, z.ZodObject<{
|
|
5725
|
+
result: z.ZodObject<{
|
|
5726
|
+
success: z.ZodBoolean;
|
|
5727
|
+
}, "strip", z.ZodTypeAny, {
|
|
5728
|
+
success: boolean;
|
|
5729
|
+
}, {
|
|
5730
|
+
success: boolean;
|
|
5731
|
+
}>;
|
|
5732
|
+
}, "strip", z.ZodTypeAny, {
|
|
5733
|
+
result: {
|
|
5734
|
+
success: boolean;
|
|
5735
|
+
};
|
|
5736
|
+
}, {
|
|
5737
|
+
result: {
|
|
5738
|
+
success: boolean;
|
|
5739
|
+
};
|
|
5740
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
5613
5741
|
};
|
|
5614
|
-
export { builderContract, BuilderSchema, BuilderResponseSchema, BuilderGitHubDataSchema, BuilderXDataSchema, CoinSchema, CoinWithTypeSchema, BuilderProfileSchema, LaunchCoinInputSchema, LaunchCoinResponseSchema };
|
|
5742
|
+
export { builderContract, BuilderSchema, BuilderResponseSchema, BuilderGitHubDataSchema, BuilderXDataSchema, CoinSchema, CoinWithTypeSchema, BuilderProfileSchema, LaunchCoinInputSchema, LaunchCoinResponseSchema, ReferralProfileSchema };
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.LaunchCoinResponseSchema = exports.LaunchCoinInputSchema = exports.BuilderProfileSchema = exports.CoinWithTypeSchema = exports.CoinSchema = exports.BuilderXDataSchema = exports.BuilderGitHubDataSchema = exports.BuilderResponseSchema = exports.BuilderSchema = exports.builderContract = void 0;
|
|
6
|
+
exports.ReferralProfileSchema = exports.LaunchCoinResponseSchema = exports.LaunchCoinInputSchema = exports.BuilderProfileSchema = exports.CoinWithTypeSchema = exports.CoinSchema = exports.BuilderXDataSchema = exports.BuilderGitHubDataSchema = exports.BuilderResponseSchema = exports.BuilderSchema = exports.builderContract = void 0;
|
|
7
7
|
const contract_1 = require("@orpc/contract");
|
|
8
8
|
const zod_1 = __importDefault(require("zod"));
|
|
9
9
|
const types_1 = require("../types");
|
|
@@ -77,6 +77,7 @@ const BuilderSchema = zod_1.default.object({
|
|
|
77
77
|
is_validated: zod_1.default.boolean(),
|
|
78
78
|
github_data: BuilderGitHubDataSchema.nullable(),
|
|
79
79
|
x_data: BuilderXDataSchema.nullable(),
|
|
80
|
+
referral_code: zod_1.default.string(),
|
|
80
81
|
created_at: zod_1.default.string(),
|
|
81
82
|
updated_at: zod_1.default.string(),
|
|
82
83
|
});
|
|
@@ -187,6 +188,40 @@ const listCoins = contract_1.oc
|
|
|
187
188
|
offset: zod_1.default.coerce.number().int().min(0).max(10000).optional().default(0).describe("Number of coins to skip for pagination"),
|
|
188
189
|
}))
|
|
189
190
|
.output(zod_1.default.object({ result: zod_1.default.array(CoinWithTypeSchema) }));
|
|
190
|
-
const
|
|
191
|
+
const ReferralProfileSchema = zod_1.default.object({
|
|
192
|
+
id: zod_1.default.string().uuid(),
|
|
193
|
+
wallet_address: zod_1.default.string().nullable(),
|
|
194
|
+
github_username: zod_1.default.string().nullable(),
|
|
195
|
+
x_username: zod_1.default.string().nullable(),
|
|
196
|
+
created_at: zod_1.default.string(),
|
|
197
|
+
});
|
|
198
|
+
exports.ReferralProfileSchema = ReferralProfileSchema;
|
|
199
|
+
const listReferrals = contract_1.oc
|
|
200
|
+
.route({
|
|
201
|
+
method: "GET",
|
|
202
|
+
path: "/builders/referrals",
|
|
203
|
+
description: "List builders referred by the authenticated user (Privy auth required)",
|
|
204
|
+
tags: ["builders"],
|
|
205
|
+
})
|
|
206
|
+
.input(zod_1.default.object({
|
|
207
|
+
limit: zod_1.default.coerce.number().int().min(1).max(50).optional().default(10).describe("Maximum number of referrals to return"),
|
|
208
|
+
offset: zod_1.default.coerce.number().int().min(0).max(10000).optional().default(0).describe("Number of referrals to skip for pagination"),
|
|
209
|
+
}))
|
|
210
|
+
.output(zod_1.default.object({
|
|
211
|
+
result: zod_1.default.object({
|
|
212
|
+
referrals: zod_1.default.array(ReferralProfileSchema),
|
|
213
|
+
total: zod_1.default.number(),
|
|
214
|
+
}),
|
|
215
|
+
}));
|
|
216
|
+
const applyReferralCode = contract_1.oc
|
|
217
|
+
.route({
|
|
218
|
+
method: "POST",
|
|
219
|
+
path: "/builders/referrals",
|
|
220
|
+
description: "Apply a referral code to the authenticated builder (Privy auth required, one-time only)",
|
|
221
|
+
tags: ["builders"],
|
|
222
|
+
})
|
|
223
|
+
.input(zod_1.default.object({ referral_code: zod_1.default.string().min(1) }))
|
|
224
|
+
.output(zod_1.default.object({ result: zod_1.default.object({ success: zod_1.default.boolean() }) }));
|
|
225
|
+
const builderContract = { register, getByIdentity, getByAddresses, launchBuilderCoin, launchProductCoin, listCoins, listReferrals, applyReferralCode };
|
|
191
226
|
exports.builderContract = builderContract;
|
|
192
227
|
//# sourceMappingURL=builder.contract.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"builder.contract.js","sourceRoot":"","sources":["../../src/contracts/builder.contract.ts"],"names":[],"mappings":";;;;;;AAAA,6CAAoC;AACpC,8CAAoB;AAEpB,oCAA2C;AAE3C,MAAM,sBAAsB,GAAG,aAAC,CAAC,MAAM,CAAC;IACpC,cAAc,EAAE,aAAC,CAAC,MAAM,EAAE;IAC1B,SAAS,EAAE,aAAC,CAAC,MAAM,EAAE;IACrB,MAAM,EAAE,aAAC,CAAC,OAAO,EAAE;IACnB,eAAe,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC1D,QAAQ,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAC;AAEH,MAAM,gBAAgB,GAAG,aAAC,CAAC,MAAM,CAAC;IAC9B,SAAS,EAAE,aAAC,CAAC,MAAM,EAAE;IACrB,GAAG,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,SAAS,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IAC/C,YAAY,EAAE,aAAC,CAAC,MAAM,CAAC;QACnB,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE;QACtB,KAAK,EAAE,aAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC;QACtC,QAAQ,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,aAAC,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC;KACrF,CAAC;IACF,uBAAuB,EAAE,aAAC,CAAC,MAAM,CAAC;QAC9B,wBAAwB,EAAE,aAAC,CAAC,MAAM,EAAE;QACpC,6BAA6B,EAAE,aAAC,CAAC,MAAM,EAAE;QACzC,mCAAmC,EAAE,aAAC,CAAC,MAAM,EAAE;QAC/C,uBAAuB,EAAE,aAAC,CAAC,MAAM,EAAE;QACnC,oBAAoB,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,kBAAkB,EAAE,aAAC,CAAC,MAAM,EAAE,EAAE,CAAC;KACrE,CAAC;CACL,CAAC,CAAC;AAEH,MAAM,kBAAkB,GAAG,aAAC,CAAC,MAAM,CAAC;IAChC,MAAM,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IAC5C,cAAc,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IACpD,OAAO,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IAC7C,MAAM,EAAE,aAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,EAAE,CAAC;CAC/C,CAAC,CAAC;AAEH,MAAM,uBAAuB,GAAG,aAAC,CAAC,MAAM,CAAC;IACrC,QAAQ,EAAE,aAAC,CAAC,MAAM,EAAE;IACpB,IAAI,EAAE,gBAAgB;IACtB,MAAM,EAAE,kBAAkB;IAC1B,SAAS,EAAE,aAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"builder.contract.js","sourceRoot":"","sources":["../../src/contracts/builder.contract.ts"],"names":[],"mappings":"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"}
|
|
@@ -5014,6 +5014,7 @@ export declare const rootContract: {
|
|
|
5014
5014
|
};
|
|
5015
5015
|
fetchedAt: string;
|
|
5016
5016
|
}>>;
|
|
5017
|
+
referral_code: import("zod").ZodString;
|
|
5017
5018
|
created_at: import("zod").ZodString;
|
|
5018
5019
|
updated_at: import("zod").ZodString;
|
|
5019
5020
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -5095,6 +5096,7 @@ export declare const rootContract: {
|
|
|
5095
5096
|
};
|
|
5096
5097
|
fetchedAt: string;
|
|
5097
5098
|
} | null;
|
|
5099
|
+
referral_code: string;
|
|
5098
5100
|
updated_at: string;
|
|
5099
5101
|
}, {
|
|
5100
5102
|
id: string;
|
|
@@ -5175,6 +5177,7 @@ export declare const rootContract: {
|
|
|
5175
5177
|
};
|
|
5176
5178
|
fetchedAt: string;
|
|
5177
5179
|
} | null;
|
|
5180
|
+
referral_code: string;
|
|
5178
5181
|
updated_at: string;
|
|
5179
5182
|
}>;
|
|
5180
5183
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -5257,6 +5260,7 @@ export declare const rootContract: {
|
|
|
5257
5260
|
};
|
|
5258
5261
|
fetchedAt: string;
|
|
5259
5262
|
} | null;
|
|
5263
|
+
referral_code: string;
|
|
5260
5264
|
updated_at: string;
|
|
5261
5265
|
};
|
|
5262
5266
|
}, {
|
|
@@ -5339,6 +5343,7 @@ export declare const rootContract: {
|
|
|
5339
5343
|
};
|
|
5340
5344
|
fetchedAt: string;
|
|
5341
5345
|
} | null;
|
|
5346
|
+
referral_code: string;
|
|
5342
5347
|
updated_at: string;
|
|
5343
5348
|
};
|
|
5344
5349
|
}>, Record<never, never>, Record<never, never>>;
|
|
@@ -7469,6 +7474,102 @@ export declare const rootContract: {
|
|
|
7469
7474
|
created_at: string;
|
|
7470
7475
|
}[];
|
|
7471
7476
|
}>, Record<never, never>, Record<never, never>>;
|
|
7477
|
+
listReferrals: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
7478
|
+
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
7479
|
+
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
7480
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7481
|
+
limit: number;
|
|
7482
|
+
offset: number;
|
|
7483
|
+
}, {
|
|
7484
|
+
limit?: number | undefined;
|
|
7485
|
+
offset?: number | undefined;
|
|
7486
|
+
}>, import("zod").ZodObject<{
|
|
7487
|
+
result: import("zod").ZodObject<{
|
|
7488
|
+
referrals: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7489
|
+
id: import("zod").ZodString;
|
|
7490
|
+
wallet_address: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7491
|
+
github_username: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7492
|
+
x_username: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7493
|
+
created_at: import("zod").ZodString;
|
|
7494
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7495
|
+
id: string;
|
|
7496
|
+
created_at: string;
|
|
7497
|
+
wallet_address: string | null;
|
|
7498
|
+
github_username: string | null;
|
|
7499
|
+
x_username: string | null;
|
|
7500
|
+
}, {
|
|
7501
|
+
id: string;
|
|
7502
|
+
created_at: string;
|
|
7503
|
+
wallet_address: string | null;
|
|
7504
|
+
github_username: string | null;
|
|
7505
|
+
x_username: string | null;
|
|
7506
|
+
}>, "many">;
|
|
7507
|
+
total: import("zod").ZodNumber;
|
|
7508
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7509
|
+
referrals: {
|
|
7510
|
+
id: string;
|
|
7511
|
+
created_at: string;
|
|
7512
|
+
wallet_address: string | null;
|
|
7513
|
+
github_username: string | null;
|
|
7514
|
+
x_username: string | null;
|
|
7515
|
+
}[];
|
|
7516
|
+
total: number;
|
|
7517
|
+
}, {
|
|
7518
|
+
referrals: {
|
|
7519
|
+
id: string;
|
|
7520
|
+
created_at: string;
|
|
7521
|
+
wallet_address: string | null;
|
|
7522
|
+
github_username: string | null;
|
|
7523
|
+
x_username: string | null;
|
|
7524
|
+
}[];
|
|
7525
|
+
total: number;
|
|
7526
|
+
}>;
|
|
7527
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7528
|
+
result: {
|
|
7529
|
+
referrals: {
|
|
7530
|
+
id: string;
|
|
7531
|
+
created_at: string;
|
|
7532
|
+
wallet_address: string | null;
|
|
7533
|
+
github_username: string | null;
|
|
7534
|
+
x_username: string | null;
|
|
7535
|
+
}[];
|
|
7536
|
+
total: number;
|
|
7537
|
+
};
|
|
7538
|
+
}, {
|
|
7539
|
+
result: {
|
|
7540
|
+
referrals: {
|
|
7541
|
+
id: string;
|
|
7542
|
+
created_at: string;
|
|
7543
|
+
wallet_address: string | null;
|
|
7544
|
+
github_username: string | null;
|
|
7545
|
+
x_username: string | null;
|
|
7546
|
+
}[];
|
|
7547
|
+
total: number;
|
|
7548
|
+
};
|
|
7549
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
7550
|
+
applyReferralCode: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
7551
|
+
referral_code: import("zod").ZodString;
|
|
7552
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7553
|
+
referral_code: string;
|
|
7554
|
+
}, {
|
|
7555
|
+
referral_code: string;
|
|
7556
|
+
}>, import("zod").ZodObject<{
|
|
7557
|
+
result: import("zod").ZodObject<{
|
|
7558
|
+
success: import("zod").ZodBoolean;
|
|
7559
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7560
|
+
success: boolean;
|
|
7561
|
+
}, {
|
|
7562
|
+
success: boolean;
|
|
7563
|
+
}>;
|
|
7564
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7565
|
+
result: {
|
|
7566
|
+
success: boolean;
|
|
7567
|
+
};
|
|
7568
|
+
}, {
|
|
7569
|
+
result: {
|
|
7570
|
+
success: boolean;
|
|
7571
|
+
};
|
|
7572
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
7472
7573
|
};
|
|
7473
7574
|
charts: {
|
|
7474
7575
|
getBars: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|