@longdotxyz/shared 0.0.153 → 0.0.154
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/contracts/builder.contract.d.ts +1453 -60
- package/dist/contracts/builder.contract.js +29 -2
- package/dist/contracts/builder.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +793 -4
- package/dist/types/constants.d.ts +10 -0
- package/dist/types/constants.js +12 -1
- package/dist/types/constants.js.map +1 -1
- package/package.json +1 -1
|
@@ -5353,6 +5353,795 @@ export declare const rootContract: {
|
|
|
5353
5353
|
updated_at: string;
|
|
5354
5354
|
};
|
|
5355
5355
|
}>, Record<never, never>, Record<never, never>>;
|
|
5356
|
+
list: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
5357
|
+
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
5358
|
+
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
5359
|
+
orderBy: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").BuilderOrderBy>>;
|
|
5360
|
+
minFollowers: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5361
|
+
minRepos: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5362
|
+
minContributions: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5363
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5364
|
+
limit: number;
|
|
5365
|
+
offset: number;
|
|
5366
|
+
orderBy?: import("..").BuilderOrderBy | undefined;
|
|
5367
|
+
minFollowers?: number | undefined;
|
|
5368
|
+
minRepos?: number | undefined;
|
|
5369
|
+
minContributions?: number | undefined;
|
|
5370
|
+
}, {
|
|
5371
|
+
limit?: number | undefined;
|
|
5372
|
+
offset?: number | undefined;
|
|
5373
|
+
orderBy?: import("..").BuilderOrderBy | undefined;
|
|
5374
|
+
minFollowers?: number | undefined;
|
|
5375
|
+
minRepos?: number | undefined;
|
|
5376
|
+
minContributions?: number | undefined;
|
|
5377
|
+
}>, import("zod").ZodObject<{
|
|
5378
|
+
result: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5379
|
+
id: import("zod").ZodString;
|
|
5380
|
+
wallet_address: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5381
|
+
github_username: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5382
|
+
x_username: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5383
|
+
is_validated: import("zod").ZodBoolean;
|
|
5384
|
+
github_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
5385
|
+
username: import("zod").ZodString;
|
|
5386
|
+
user: import("zod").ZodObject<{
|
|
5387
|
+
createdAt: import("zod").ZodString;
|
|
5388
|
+
bio: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5389
|
+
websiteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5390
|
+
followers: import("zod").ZodObject<{
|
|
5391
|
+
totalCount: import("zod").ZodNumber;
|
|
5392
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5393
|
+
totalCount: number;
|
|
5394
|
+
}, {
|
|
5395
|
+
totalCount: number;
|
|
5396
|
+
}>;
|
|
5397
|
+
repositories: import("zod").ZodObject<{
|
|
5398
|
+
totalCount: import("zod").ZodNumber;
|
|
5399
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5400
|
+
stargazerCount: import("zod").ZodNumber;
|
|
5401
|
+
forkCount: import("zod").ZodNumber;
|
|
5402
|
+
isFork: import("zod").ZodBoolean;
|
|
5403
|
+
primaryLanguage: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
5404
|
+
name: import("zod").ZodString;
|
|
5405
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5406
|
+
name: string;
|
|
5407
|
+
}, {
|
|
5408
|
+
name: string;
|
|
5409
|
+
}>>;
|
|
5410
|
+
pushedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5411
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5412
|
+
stargazerCount: number;
|
|
5413
|
+
forkCount: number;
|
|
5414
|
+
isFork: boolean;
|
|
5415
|
+
primaryLanguage: {
|
|
5416
|
+
name: string;
|
|
5417
|
+
} | null;
|
|
5418
|
+
pushedAt: string | null;
|
|
5419
|
+
}, {
|
|
5420
|
+
stargazerCount: number;
|
|
5421
|
+
forkCount: number;
|
|
5422
|
+
isFork: boolean;
|
|
5423
|
+
primaryLanguage: {
|
|
5424
|
+
name: string;
|
|
5425
|
+
} | null;
|
|
5426
|
+
pushedAt: string | null;
|
|
5427
|
+
}>, "many">;
|
|
5428
|
+
pageInfo: import("zod").ZodObject<{
|
|
5429
|
+
hasNextPage: import("zod").ZodBoolean;
|
|
5430
|
+
endCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5431
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5432
|
+
hasNextPage: boolean;
|
|
5433
|
+
endCursor: string | null;
|
|
5434
|
+
}, {
|
|
5435
|
+
hasNextPage: boolean;
|
|
5436
|
+
endCursor: string | null;
|
|
5437
|
+
}>;
|
|
5438
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5439
|
+
totalCount: number;
|
|
5440
|
+
nodes: {
|
|
5441
|
+
stargazerCount: number;
|
|
5442
|
+
forkCount: number;
|
|
5443
|
+
isFork: boolean;
|
|
5444
|
+
primaryLanguage: {
|
|
5445
|
+
name: string;
|
|
5446
|
+
} | null;
|
|
5447
|
+
pushedAt: string | null;
|
|
5448
|
+
}[];
|
|
5449
|
+
pageInfo: {
|
|
5450
|
+
hasNextPage: boolean;
|
|
5451
|
+
endCursor: string | null;
|
|
5452
|
+
};
|
|
5453
|
+
}, {
|
|
5454
|
+
totalCount: number;
|
|
5455
|
+
nodes: {
|
|
5456
|
+
stargazerCount: number;
|
|
5457
|
+
forkCount: number;
|
|
5458
|
+
isFork: boolean;
|
|
5459
|
+
primaryLanguage: {
|
|
5460
|
+
name: string;
|
|
5461
|
+
} | null;
|
|
5462
|
+
pushedAt: string | null;
|
|
5463
|
+
}[];
|
|
5464
|
+
pageInfo: {
|
|
5465
|
+
hasNextPage: boolean;
|
|
5466
|
+
endCursor: string | null;
|
|
5467
|
+
};
|
|
5468
|
+
}>;
|
|
5469
|
+
contributionsCollection: import("zod").ZodObject<{
|
|
5470
|
+
totalCommitContributions: import("zod").ZodNumber;
|
|
5471
|
+
totalPullRequestContributions: import("zod").ZodNumber;
|
|
5472
|
+
totalPullRequestReviewContributions: import("zod").ZodNumber;
|
|
5473
|
+
totalIssueContributions: import("zod").ZodNumber;
|
|
5474
|
+
contributionCalendar: import("zod").ZodObject<{
|
|
5475
|
+
totalContributions: import("zod").ZodNumber;
|
|
5476
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5477
|
+
totalContributions: number;
|
|
5478
|
+
}, {
|
|
5479
|
+
totalContributions: number;
|
|
5480
|
+
}>;
|
|
5481
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5482
|
+
totalCommitContributions: number;
|
|
5483
|
+
totalPullRequestContributions: number;
|
|
5484
|
+
totalPullRequestReviewContributions: number;
|
|
5485
|
+
totalIssueContributions: number;
|
|
5486
|
+
contributionCalendar: {
|
|
5487
|
+
totalContributions: number;
|
|
5488
|
+
};
|
|
5489
|
+
}, {
|
|
5490
|
+
totalCommitContributions: number;
|
|
5491
|
+
totalPullRequestContributions: number;
|
|
5492
|
+
totalPullRequestReviewContributions: number;
|
|
5493
|
+
totalIssueContributions: number;
|
|
5494
|
+
contributionCalendar: {
|
|
5495
|
+
totalContributions: number;
|
|
5496
|
+
};
|
|
5497
|
+
}>;
|
|
5498
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5499
|
+
createdAt: string;
|
|
5500
|
+
bio: string | null;
|
|
5501
|
+
websiteUrl: string | null;
|
|
5502
|
+
followers: {
|
|
5503
|
+
totalCount: number;
|
|
5504
|
+
};
|
|
5505
|
+
repositories: {
|
|
5506
|
+
totalCount: number;
|
|
5507
|
+
nodes: {
|
|
5508
|
+
stargazerCount: number;
|
|
5509
|
+
forkCount: number;
|
|
5510
|
+
isFork: boolean;
|
|
5511
|
+
primaryLanguage: {
|
|
5512
|
+
name: string;
|
|
5513
|
+
} | null;
|
|
5514
|
+
pushedAt: string | null;
|
|
5515
|
+
}[];
|
|
5516
|
+
pageInfo: {
|
|
5517
|
+
hasNextPage: boolean;
|
|
5518
|
+
endCursor: string | null;
|
|
5519
|
+
};
|
|
5520
|
+
};
|
|
5521
|
+
contributionsCollection: {
|
|
5522
|
+
totalCommitContributions: number;
|
|
5523
|
+
totalPullRequestContributions: number;
|
|
5524
|
+
totalPullRequestReviewContributions: number;
|
|
5525
|
+
totalIssueContributions: number;
|
|
5526
|
+
contributionCalendar: {
|
|
5527
|
+
totalContributions: number;
|
|
5528
|
+
};
|
|
5529
|
+
};
|
|
5530
|
+
}, {
|
|
5531
|
+
createdAt: string;
|
|
5532
|
+
bio: string | null;
|
|
5533
|
+
websiteUrl: string | null;
|
|
5534
|
+
followers: {
|
|
5535
|
+
totalCount: number;
|
|
5536
|
+
};
|
|
5537
|
+
repositories: {
|
|
5538
|
+
totalCount: number;
|
|
5539
|
+
nodes: {
|
|
5540
|
+
stargazerCount: number;
|
|
5541
|
+
forkCount: number;
|
|
5542
|
+
isFork: boolean;
|
|
5543
|
+
primaryLanguage: {
|
|
5544
|
+
name: string;
|
|
5545
|
+
} | null;
|
|
5546
|
+
pushedAt: string | null;
|
|
5547
|
+
}[];
|
|
5548
|
+
pageInfo: {
|
|
5549
|
+
hasNextPage: boolean;
|
|
5550
|
+
endCursor: string | null;
|
|
5551
|
+
};
|
|
5552
|
+
};
|
|
5553
|
+
contributionsCollection: {
|
|
5554
|
+
totalCommitContributions: number;
|
|
5555
|
+
totalPullRequestContributions: number;
|
|
5556
|
+
totalPullRequestReviewContributions: number;
|
|
5557
|
+
totalIssueContributions: number;
|
|
5558
|
+
contributionCalendar: {
|
|
5559
|
+
totalContributions: number;
|
|
5560
|
+
};
|
|
5561
|
+
};
|
|
5562
|
+
}>;
|
|
5563
|
+
search: import("zod").ZodObject<{
|
|
5564
|
+
merged: import("zod").ZodObject<{
|
|
5565
|
+
issueCount: import("zod").ZodNumber;
|
|
5566
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5567
|
+
issueCount: number;
|
|
5568
|
+
}, {
|
|
5569
|
+
issueCount: number;
|
|
5570
|
+
}>;
|
|
5571
|
+
externalMerged: import("zod").ZodObject<{
|
|
5572
|
+
issueCount: import("zod").ZodNumber;
|
|
5573
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5574
|
+
issueCount: number;
|
|
5575
|
+
}, {
|
|
5576
|
+
issueCount: number;
|
|
5577
|
+
}>;
|
|
5578
|
+
reviews: import("zod").ZodObject<{
|
|
5579
|
+
issueCount: import("zod").ZodNumber;
|
|
5580
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5581
|
+
issueCount: number;
|
|
5582
|
+
}, {
|
|
5583
|
+
issueCount: number;
|
|
5584
|
+
}>;
|
|
5585
|
+
issues: import("zod").ZodObject<{
|
|
5586
|
+
issueCount: import("zod").ZodNumber;
|
|
5587
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5588
|
+
issueCount: number;
|
|
5589
|
+
}, {
|
|
5590
|
+
issueCount: number;
|
|
5591
|
+
}>;
|
|
5592
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5593
|
+
issues: {
|
|
5594
|
+
issueCount: number;
|
|
5595
|
+
};
|
|
5596
|
+
merged: {
|
|
5597
|
+
issueCount: number;
|
|
5598
|
+
};
|
|
5599
|
+
externalMerged: {
|
|
5600
|
+
issueCount: number;
|
|
5601
|
+
};
|
|
5602
|
+
reviews: {
|
|
5603
|
+
issueCount: number;
|
|
5604
|
+
};
|
|
5605
|
+
}, {
|
|
5606
|
+
issues: {
|
|
5607
|
+
issueCount: number;
|
|
5608
|
+
};
|
|
5609
|
+
merged: {
|
|
5610
|
+
issueCount: number;
|
|
5611
|
+
};
|
|
5612
|
+
externalMerged: {
|
|
5613
|
+
issueCount: number;
|
|
5614
|
+
};
|
|
5615
|
+
reviews: {
|
|
5616
|
+
issueCount: number;
|
|
5617
|
+
};
|
|
5618
|
+
}>;
|
|
5619
|
+
fetchedAt: import("zod").ZodString;
|
|
5620
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5621
|
+
username: string;
|
|
5622
|
+
user: {
|
|
5623
|
+
createdAt: string;
|
|
5624
|
+
bio: string | null;
|
|
5625
|
+
websiteUrl: string | null;
|
|
5626
|
+
followers: {
|
|
5627
|
+
totalCount: number;
|
|
5628
|
+
};
|
|
5629
|
+
repositories: {
|
|
5630
|
+
totalCount: number;
|
|
5631
|
+
nodes: {
|
|
5632
|
+
stargazerCount: number;
|
|
5633
|
+
forkCount: number;
|
|
5634
|
+
isFork: boolean;
|
|
5635
|
+
primaryLanguage: {
|
|
5636
|
+
name: string;
|
|
5637
|
+
} | null;
|
|
5638
|
+
pushedAt: string | null;
|
|
5639
|
+
}[];
|
|
5640
|
+
pageInfo: {
|
|
5641
|
+
hasNextPage: boolean;
|
|
5642
|
+
endCursor: string | null;
|
|
5643
|
+
};
|
|
5644
|
+
};
|
|
5645
|
+
contributionsCollection: {
|
|
5646
|
+
totalCommitContributions: number;
|
|
5647
|
+
totalPullRequestContributions: number;
|
|
5648
|
+
totalPullRequestReviewContributions: number;
|
|
5649
|
+
totalIssueContributions: number;
|
|
5650
|
+
contributionCalendar: {
|
|
5651
|
+
totalContributions: number;
|
|
5652
|
+
};
|
|
5653
|
+
};
|
|
5654
|
+
};
|
|
5655
|
+
search: {
|
|
5656
|
+
issues: {
|
|
5657
|
+
issueCount: number;
|
|
5658
|
+
};
|
|
5659
|
+
merged: {
|
|
5660
|
+
issueCount: number;
|
|
5661
|
+
};
|
|
5662
|
+
externalMerged: {
|
|
5663
|
+
issueCount: number;
|
|
5664
|
+
};
|
|
5665
|
+
reviews: {
|
|
5666
|
+
issueCount: number;
|
|
5667
|
+
};
|
|
5668
|
+
};
|
|
5669
|
+
fetchedAt: string;
|
|
5670
|
+
}, {
|
|
5671
|
+
username: string;
|
|
5672
|
+
user: {
|
|
5673
|
+
createdAt: string;
|
|
5674
|
+
bio: string | null;
|
|
5675
|
+
websiteUrl: string | null;
|
|
5676
|
+
followers: {
|
|
5677
|
+
totalCount: number;
|
|
5678
|
+
};
|
|
5679
|
+
repositories: {
|
|
5680
|
+
totalCount: number;
|
|
5681
|
+
nodes: {
|
|
5682
|
+
stargazerCount: number;
|
|
5683
|
+
forkCount: number;
|
|
5684
|
+
isFork: boolean;
|
|
5685
|
+
primaryLanguage: {
|
|
5686
|
+
name: string;
|
|
5687
|
+
} | null;
|
|
5688
|
+
pushedAt: string | null;
|
|
5689
|
+
}[];
|
|
5690
|
+
pageInfo: {
|
|
5691
|
+
hasNextPage: boolean;
|
|
5692
|
+
endCursor: string | null;
|
|
5693
|
+
};
|
|
5694
|
+
};
|
|
5695
|
+
contributionsCollection: {
|
|
5696
|
+
totalCommitContributions: number;
|
|
5697
|
+
totalPullRequestContributions: number;
|
|
5698
|
+
totalPullRequestReviewContributions: number;
|
|
5699
|
+
totalIssueContributions: number;
|
|
5700
|
+
contributionCalendar: {
|
|
5701
|
+
totalContributions: number;
|
|
5702
|
+
};
|
|
5703
|
+
};
|
|
5704
|
+
};
|
|
5705
|
+
search: {
|
|
5706
|
+
issues: {
|
|
5707
|
+
issueCount: number;
|
|
5708
|
+
};
|
|
5709
|
+
merged: {
|
|
5710
|
+
issueCount: number;
|
|
5711
|
+
};
|
|
5712
|
+
externalMerged: {
|
|
5713
|
+
issueCount: number;
|
|
5714
|
+
};
|
|
5715
|
+
reviews: {
|
|
5716
|
+
issueCount: number;
|
|
5717
|
+
};
|
|
5718
|
+
};
|
|
5719
|
+
fetchedAt: string;
|
|
5720
|
+
}>>;
|
|
5721
|
+
x_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
5722
|
+
user: import("zod").ZodObject<{
|
|
5723
|
+
id: import("zod").ZodString;
|
|
5724
|
+
username: import("zod").ZodString;
|
|
5725
|
+
name: import("zod").ZodString;
|
|
5726
|
+
verified: import("zod").ZodBoolean;
|
|
5727
|
+
verified_type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5728
|
+
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5729
|
+
protected: import("zod").ZodBoolean;
|
|
5730
|
+
profile_image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5731
|
+
public_metrics: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5732
|
+
followers_count: import("zod").ZodNumber;
|
|
5733
|
+
following_count: import("zod").ZodNumber;
|
|
5734
|
+
tweet_count: import("zod").ZodNumber;
|
|
5735
|
+
listed_count: import("zod").ZodNumber;
|
|
5736
|
+
like_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5737
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5738
|
+
followers_count: number;
|
|
5739
|
+
following_count: number;
|
|
5740
|
+
tweet_count: number;
|
|
5741
|
+
listed_count: number;
|
|
5742
|
+
like_count?: number | undefined;
|
|
5743
|
+
}, {
|
|
5744
|
+
followers_count: number;
|
|
5745
|
+
following_count: number;
|
|
5746
|
+
tweet_count: number;
|
|
5747
|
+
listed_count: number;
|
|
5748
|
+
like_count?: number | undefined;
|
|
5749
|
+
}>>;
|
|
5750
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5751
|
+
id: string;
|
|
5752
|
+
name: string;
|
|
5753
|
+
username: string;
|
|
5754
|
+
verified: boolean;
|
|
5755
|
+
protected: boolean;
|
|
5756
|
+
created_at?: string | undefined;
|
|
5757
|
+
verified_type?: string | undefined;
|
|
5758
|
+
profile_image_url?: string | undefined;
|
|
5759
|
+
public_metrics?: {
|
|
5760
|
+
followers_count: number;
|
|
5761
|
+
following_count: number;
|
|
5762
|
+
tweet_count: number;
|
|
5763
|
+
listed_count: number;
|
|
5764
|
+
like_count?: number | undefined;
|
|
5765
|
+
} | undefined;
|
|
5766
|
+
}, {
|
|
5767
|
+
id: string;
|
|
5768
|
+
name: string;
|
|
5769
|
+
username: string;
|
|
5770
|
+
verified: boolean;
|
|
5771
|
+
protected: boolean;
|
|
5772
|
+
created_at?: string | undefined;
|
|
5773
|
+
verified_type?: string | undefined;
|
|
5774
|
+
profile_image_url?: string | undefined;
|
|
5775
|
+
public_metrics?: {
|
|
5776
|
+
followers_count: number;
|
|
5777
|
+
following_count: number;
|
|
5778
|
+
tweet_count: number;
|
|
5779
|
+
listed_count: number;
|
|
5780
|
+
like_count?: number | undefined;
|
|
5781
|
+
} | undefined;
|
|
5782
|
+
}>;
|
|
5783
|
+
fetchedAt: import("zod").ZodString;
|
|
5784
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5785
|
+
user: {
|
|
5786
|
+
id: string;
|
|
5787
|
+
name: string;
|
|
5788
|
+
username: string;
|
|
5789
|
+
verified: boolean;
|
|
5790
|
+
protected: boolean;
|
|
5791
|
+
created_at?: string | undefined;
|
|
5792
|
+
verified_type?: string | undefined;
|
|
5793
|
+
profile_image_url?: string | undefined;
|
|
5794
|
+
public_metrics?: {
|
|
5795
|
+
followers_count: number;
|
|
5796
|
+
following_count: number;
|
|
5797
|
+
tweet_count: number;
|
|
5798
|
+
listed_count: number;
|
|
5799
|
+
like_count?: number | undefined;
|
|
5800
|
+
} | undefined;
|
|
5801
|
+
};
|
|
5802
|
+
fetchedAt: string;
|
|
5803
|
+
}, {
|
|
5804
|
+
user: {
|
|
5805
|
+
id: string;
|
|
5806
|
+
name: string;
|
|
5807
|
+
username: string;
|
|
5808
|
+
verified: boolean;
|
|
5809
|
+
protected: boolean;
|
|
5810
|
+
created_at?: string | undefined;
|
|
5811
|
+
verified_type?: string | undefined;
|
|
5812
|
+
profile_image_url?: string | undefined;
|
|
5813
|
+
public_metrics?: {
|
|
5814
|
+
followers_count: number;
|
|
5815
|
+
following_count: number;
|
|
5816
|
+
tweet_count: number;
|
|
5817
|
+
listed_count: number;
|
|
5818
|
+
like_count?: number | undefined;
|
|
5819
|
+
} | undefined;
|
|
5820
|
+
};
|
|
5821
|
+
fetchedAt: string;
|
|
5822
|
+
}>>;
|
|
5823
|
+
created_at: import("zod").ZodString;
|
|
5824
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5825
|
+
id: string;
|
|
5826
|
+
created_at: string;
|
|
5827
|
+
wallet_address: string | null;
|
|
5828
|
+
github_username: string | null;
|
|
5829
|
+
x_username: string | null;
|
|
5830
|
+
is_validated: boolean;
|
|
5831
|
+
github_data: {
|
|
5832
|
+
username: string;
|
|
5833
|
+
user: {
|
|
5834
|
+
createdAt: string;
|
|
5835
|
+
bio: string | null;
|
|
5836
|
+
websiteUrl: string | null;
|
|
5837
|
+
followers: {
|
|
5838
|
+
totalCount: number;
|
|
5839
|
+
};
|
|
5840
|
+
repositories: {
|
|
5841
|
+
totalCount: number;
|
|
5842
|
+
nodes: {
|
|
5843
|
+
stargazerCount: number;
|
|
5844
|
+
forkCount: number;
|
|
5845
|
+
isFork: boolean;
|
|
5846
|
+
primaryLanguage: {
|
|
5847
|
+
name: string;
|
|
5848
|
+
} | null;
|
|
5849
|
+
pushedAt: string | null;
|
|
5850
|
+
}[];
|
|
5851
|
+
pageInfo: {
|
|
5852
|
+
hasNextPage: boolean;
|
|
5853
|
+
endCursor: string | null;
|
|
5854
|
+
};
|
|
5855
|
+
};
|
|
5856
|
+
contributionsCollection: {
|
|
5857
|
+
totalCommitContributions: number;
|
|
5858
|
+
totalPullRequestContributions: number;
|
|
5859
|
+
totalPullRequestReviewContributions: number;
|
|
5860
|
+
totalIssueContributions: number;
|
|
5861
|
+
contributionCalendar: {
|
|
5862
|
+
totalContributions: number;
|
|
5863
|
+
};
|
|
5864
|
+
};
|
|
5865
|
+
};
|
|
5866
|
+
search: {
|
|
5867
|
+
issues: {
|
|
5868
|
+
issueCount: number;
|
|
5869
|
+
};
|
|
5870
|
+
merged: {
|
|
5871
|
+
issueCount: number;
|
|
5872
|
+
};
|
|
5873
|
+
externalMerged: {
|
|
5874
|
+
issueCount: number;
|
|
5875
|
+
};
|
|
5876
|
+
reviews: {
|
|
5877
|
+
issueCount: number;
|
|
5878
|
+
};
|
|
5879
|
+
};
|
|
5880
|
+
fetchedAt: string;
|
|
5881
|
+
} | null;
|
|
5882
|
+
x_data: {
|
|
5883
|
+
user: {
|
|
5884
|
+
id: string;
|
|
5885
|
+
name: string;
|
|
5886
|
+
username: string;
|
|
5887
|
+
verified: boolean;
|
|
5888
|
+
protected: boolean;
|
|
5889
|
+
created_at?: string | undefined;
|
|
5890
|
+
verified_type?: string | undefined;
|
|
5891
|
+
profile_image_url?: string | undefined;
|
|
5892
|
+
public_metrics?: {
|
|
5893
|
+
followers_count: number;
|
|
5894
|
+
following_count: number;
|
|
5895
|
+
tweet_count: number;
|
|
5896
|
+
listed_count: number;
|
|
5897
|
+
like_count?: number | undefined;
|
|
5898
|
+
} | undefined;
|
|
5899
|
+
};
|
|
5900
|
+
fetchedAt: string;
|
|
5901
|
+
} | null;
|
|
5902
|
+
}, {
|
|
5903
|
+
id: string;
|
|
5904
|
+
created_at: string;
|
|
5905
|
+
wallet_address: string | null;
|
|
5906
|
+
github_username: string | null;
|
|
5907
|
+
x_username: string | null;
|
|
5908
|
+
is_validated: boolean;
|
|
5909
|
+
github_data: {
|
|
5910
|
+
username: string;
|
|
5911
|
+
user: {
|
|
5912
|
+
createdAt: string;
|
|
5913
|
+
bio: string | null;
|
|
5914
|
+
websiteUrl: string | null;
|
|
5915
|
+
followers: {
|
|
5916
|
+
totalCount: number;
|
|
5917
|
+
};
|
|
5918
|
+
repositories: {
|
|
5919
|
+
totalCount: number;
|
|
5920
|
+
nodes: {
|
|
5921
|
+
stargazerCount: number;
|
|
5922
|
+
forkCount: number;
|
|
5923
|
+
isFork: boolean;
|
|
5924
|
+
primaryLanguage: {
|
|
5925
|
+
name: string;
|
|
5926
|
+
} | null;
|
|
5927
|
+
pushedAt: string | null;
|
|
5928
|
+
}[];
|
|
5929
|
+
pageInfo: {
|
|
5930
|
+
hasNextPage: boolean;
|
|
5931
|
+
endCursor: string | null;
|
|
5932
|
+
};
|
|
5933
|
+
};
|
|
5934
|
+
contributionsCollection: {
|
|
5935
|
+
totalCommitContributions: number;
|
|
5936
|
+
totalPullRequestContributions: number;
|
|
5937
|
+
totalPullRequestReviewContributions: number;
|
|
5938
|
+
totalIssueContributions: number;
|
|
5939
|
+
contributionCalendar: {
|
|
5940
|
+
totalContributions: number;
|
|
5941
|
+
};
|
|
5942
|
+
};
|
|
5943
|
+
};
|
|
5944
|
+
search: {
|
|
5945
|
+
issues: {
|
|
5946
|
+
issueCount: number;
|
|
5947
|
+
};
|
|
5948
|
+
merged: {
|
|
5949
|
+
issueCount: number;
|
|
5950
|
+
};
|
|
5951
|
+
externalMerged: {
|
|
5952
|
+
issueCount: number;
|
|
5953
|
+
};
|
|
5954
|
+
reviews: {
|
|
5955
|
+
issueCount: number;
|
|
5956
|
+
};
|
|
5957
|
+
};
|
|
5958
|
+
fetchedAt: string;
|
|
5959
|
+
} | null;
|
|
5960
|
+
x_data: {
|
|
5961
|
+
user: {
|
|
5962
|
+
id: string;
|
|
5963
|
+
name: string;
|
|
5964
|
+
username: string;
|
|
5965
|
+
verified: boolean;
|
|
5966
|
+
protected: boolean;
|
|
5967
|
+
created_at?: string | undefined;
|
|
5968
|
+
verified_type?: string | undefined;
|
|
5969
|
+
profile_image_url?: string | undefined;
|
|
5970
|
+
public_metrics?: {
|
|
5971
|
+
followers_count: number;
|
|
5972
|
+
following_count: number;
|
|
5973
|
+
tweet_count: number;
|
|
5974
|
+
listed_count: number;
|
|
5975
|
+
like_count?: number | undefined;
|
|
5976
|
+
} | undefined;
|
|
5977
|
+
};
|
|
5978
|
+
fetchedAt: string;
|
|
5979
|
+
} | null;
|
|
5980
|
+
}>, "many">;
|
|
5981
|
+
total: import("zod").ZodNumber;
|
|
5982
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5983
|
+
result: {
|
|
5984
|
+
id: string;
|
|
5985
|
+
created_at: string;
|
|
5986
|
+
wallet_address: string | null;
|
|
5987
|
+
github_username: string | null;
|
|
5988
|
+
x_username: string | null;
|
|
5989
|
+
is_validated: boolean;
|
|
5990
|
+
github_data: {
|
|
5991
|
+
username: string;
|
|
5992
|
+
user: {
|
|
5993
|
+
createdAt: string;
|
|
5994
|
+
bio: string | null;
|
|
5995
|
+
websiteUrl: string | null;
|
|
5996
|
+
followers: {
|
|
5997
|
+
totalCount: number;
|
|
5998
|
+
};
|
|
5999
|
+
repositories: {
|
|
6000
|
+
totalCount: number;
|
|
6001
|
+
nodes: {
|
|
6002
|
+
stargazerCount: number;
|
|
6003
|
+
forkCount: number;
|
|
6004
|
+
isFork: boolean;
|
|
6005
|
+
primaryLanguage: {
|
|
6006
|
+
name: string;
|
|
6007
|
+
} | null;
|
|
6008
|
+
pushedAt: string | null;
|
|
6009
|
+
}[];
|
|
6010
|
+
pageInfo: {
|
|
6011
|
+
hasNextPage: boolean;
|
|
6012
|
+
endCursor: string | null;
|
|
6013
|
+
};
|
|
6014
|
+
};
|
|
6015
|
+
contributionsCollection: {
|
|
6016
|
+
totalCommitContributions: number;
|
|
6017
|
+
totalPullRequestContributions: number;
|
|
6018
|
+
totalPullRequestReviewContributions: number;
|
|
6019
|
+
totalIssueContributions: number;
|
|
6020
|
+
contributionCalendar: {
|
|
6021
|
+
totalContributions: number;
|
|
6022
|
+
};
|
|
6023
|
+
};
|
|
6024
|
+
};
|
|
6025
|
+
search: {
|
|
6026
|
+
issues: {
|
|
6027
|
+
issueCount: number;
|
|
6028
|
+
};
|
|
6029
|
+
merged: {
|
|
6030
|
+
issueCount: number;
|
|
6031
|
+
};
|
|
6032
|
+
externalMerged: {
|
|
6033
|
+
issueCount: number;
|
|
6034
|
+
};
|
|
6035
|
+
reviews: {
|
|
6036
|
+
issueCount: number;
|
|
6037
|
+
};
|
|
6038
|
+
};
|
|
6039
|
+
fetchedAt: string;
|
|
6040
|
+
} | null;
|
|
6041
|
+
x_data: {
|
|
6042
|
+
user: {
|
|
6043
|
+
id: string;
|
|
6044
|
+
name: string;
|
|
6045
|
+
username: string;
|
|
6046
|
+
verified: boolean;
|
|
6047
|
+
protected: boolean;
|
|
6048
|
+
created_at?: string | undefined;
|
|
6049
|
+
verified_type?: string | undefined;
|
|
6050
|
+
profile_image_url?: string | undefined;
|
|
6051
|
+
public_metrics?: {
|
|
6052
|
+
followers_count: number;
|
|
6053
|
+
following_count: number;
|
|
6054
|
+
tweet_count: number;
|
|
6055
|
+
listed_count: number;
|
|
6056
|
+
like_count?: number | undefined;
|
|
6057
|
+
} | undefined;
|
|
6058
|
+
};
|
|
6059
|
+
fetchedAt: string;
|
|
6060
|
+
} | null;
|
|
6061
|
+
}[];
|
|
6062
|
+
total: number;
|
|
6063
|
+
}, {
|
|
6064
|
+
result: {
|
|
6065
|
+
id: string;
|
|
6066
|
+
created_at: string;
|
|
6067
|
+
wallet_address: string | null;
|
|
6068
|
+
github_username: string | null;
|
|
6069
|
+
x_username: string | null;
|
|
6070
|
+
is_validated: boolean;
|
|
6071
|
+
github_data: {
|
|
6072
|
+
username: string;
|
|
6073
|
+
user: {
|
|
6074
|
+
createdAt: string;
|
|
6075
|
+
bio: string | null;
|
|
6076
|
+
websiteUrl: string | null;
|
|
6077
|
+
followers: {
|
|
6078
|
+
totalCount: number;
|
|
6079
|
+
};
|
|
6080
|
+
repositories: {
|
|
6081
|
+
totalCount: number;
|
|
6082
|
+
nodes: {
|
|
6083
|
+
stargazerCount: number;
|
|
6084
|
+
forkCount: number;
|
|
6085
|
+
isFork: boolean;
|
|
6086
|
+
primaryLanguage: {
|
|
6087
|
+
name: string;
|
|
6088
|
+
} | null;
|
|
6089
|
+
pushedAt: string | null;
|
|
6090
|
+
}[];
|
|
6091
|
+
pageInfo: {
|
|
6092
|
+
hasNextPage: boolean;
|
|
6093
|
+
endCursor: string | null;
|
|
6094
|
+
};
|
|
6095
|
+
};
|
|
6096
|
+
contributionsCollection: {
|
|
6097
|
+
totalCommitContributions: number;
|
|
6098
|
+
totalPullRequestContributions: number;
|
|
6099
|
+
totalPullRequestReviewContributions: number;
|
|
6100
|
+
totalIssueContributions: number;
|
|
6101
|
+
contributionCalendar: {
|
|
6102
|
+
totalContributions: number;
|
|
6103
|
+
};
|
|
6104
|
+
};
|
|
6105
|
+
};
|
|
6106
|
+
search: {
|
|
6107
|
+
issues: {
|
|
6108
|
+
issueCount: number;
|
|
6109
|
+
};
|
|
6110
|
+
merged: {
|
|
6111
|
+
issueCount: number;
|
|
6112
|
+
};
|
|
6113
|
+
externalMerged: {
|
|
6114
|
+
issueCount: number;
|
|
6115
|
+
};
|
|
6116
|
+
reviews: {
|
|
6117
|
+
issueCount: number;
|
|
6118
|
+
};
|
|
6119
|
+
};
|
|
6120
|
+
fetchedAt: string;
|
|
6121
|
+
} | null;
|
|
6122
|
+
x_data: {
|
|
6123
|
+
user: {
|
|
6124
|
+
id: string;
|
|
6125
|
+
name: string;
|
|
6126
|
+
username: string;
|
|
6127
|
+
verified: boolean;
|
|
6128
|
+
protected: boolean;
|
|
6129
|
+
created_at?: string | undefined;
|
|
6130
|
+
verified_type?: string | undefined;
|
|
6131
|
+
profile_image_url?: string | undefined;
|
|
6132
|
+
public_metrics?: {
|
|
6133
|
+
followers_count: number;
|
|
6134
|
+
following_count: number;
|
|
6135
|
+
tweet_count: number;
|
|
6136
|
+
listed_count: number;
|
|
6137
|
+
like_count?: number | undefined;
|
|
6138
|
+
} | undefined;
|
|
6139
|
+
};
|
|
6140
|
+
fetchedAt: string;
|
|
6141
|
+
} | null;
|
|
6142
|
+
}[];
|
|
6143
|
+
total: number;
|
|
6144
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
5356
6145
|
getByIdentity: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
5357
6146
|
identity: import("zod").ZodString;
|
|
5358
6147
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -7550,6 +8339,7 @@ export declare const rootContract: {
|
|
|
7550
8339
|
}>, "many">;
|
|
7551
8340
|
total: import("zod").ZodNumber;
|
|
7552
8341
|
}, "strip", import("zod").ZodTypeAny, {
|
|
8342
|
+
total: number;
|
|
7553
8343
|
referrals: {
|
|
7554
8344
|
id: string;
|
|
7555
8345
|
created_at: string;
|
|
@@ -7557,8 +8347,8 @@ export declare const rootContract: {
|
|
|
7557
8347
|
github_username: string | null;
|
|
7558
8348
|
x_username: string | null;
|
|
7559
8349
|
}[];
|
|
7560
|
-
total: number;
|
|
7561
8350
|
}, {
|
|
8351
|
+
total: number;
|
|
7562
8352
|
referrals: {
|
|
7563
8353
|
id: string;
|
|
7564
8354
|
created_at: string;
|
|
@@ -7566,10 +8356,10 @@ export declare const rootContract: {
|
|
|
7566
8356
|
github_username: string | null;
|
|
7567
8357
|
x_username: string | null;
|
|
7568
8358
|
}[];
|
|
7569
|
-
total: number;
|
|
7570
8359
|
}>;
|
|
7571
8360
|
}, "strip", import("zod").ZodTypeAny, {
|
|
7572
8361
|
result: {
|
|
8362
|
+
total: number;
|
|
7573
8363
|
referrals: {
|
|
7574
8364
|
id: string;
|
|
7575
8365
|
created_at: string;
|
|
@@ -7577,10 +8367,10 @@ export declare const rootContract: {
|
|
|
7577
8367
|
github_username: string | null;
|
|
7578
8368
|
x_username: string | null;
|
|
7579
8369
|
}[];
|
|
7580
|
-
total: number;
|
|
7581
8370
|
};
|
|
7582
8371
|
}, {
|
|
7583
8372
|
result: {
|
|
8373
|
+
total: number;
|
|
7584
8374
|
referrals: {
|
|
7585
8375
|
id: string;
|
|
7586
8376
|
created_at: string;
|
|
@@ -7588,7 +8378,6 @@ export declare const rootContract: {
|
|
|
7588
8378
|
github_username: string | null;
|
|
7589
8379
|
x_username: string | null;
|
|
7590
8380
|
}[];
|
|
7591
|
-
total: number;
|
|
7592
8381
|
};
|
|
7593
8382
|
}>, Record<never, never>, Record<never, never>>;
|
|
7594
8383
|
applyReferralCode: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|