@bountylab/bountylab 0.27.0 → 0.28.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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/raw-repos.d.mts +252 -0
- package/resources/raw-repos.d.mts.map +1 -1
- package/resources/raw-repos.d.ts +252 -0
- package/resources/raw-repos.d.ts.map +1 -1
- package/resources/raw-users.d.mts +342 -0
- package/resources/raw-users.d.mts.map +1 -1
- package/resources/raw-users.d.ts +342 -0
- package/resources/raw-users.d.ts.map +1 -1
- package/resources/search-repos.d.mts +36 -0
- package/resources/search-repos.d.mts.map +1 -1
- package/resources/search-repos.d.ts +36 -0
- package/resources/search-repos.d.ts.map +1 -1
- package/resources/search-users.d.mts +144 -0
- package/resources/search-users.d.mts.map +1 -1
- package/resources/search-users.d.ts +144 -0
- package/resources/search-users.d.ts.map +1 -1
- package/src/resources/raw-repos.ts +294 -0
- package/src/resources/raw-users.ts +399 -0
- package/src/resources/search-repos.ts +42 -0
- package/src/resources/search-users.ts +168 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.28.0 (2025-11-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.27.0...v0.28.0](https://github.com/bountylaboratories/typescript-sdk/compare/v0.27.0...v0.28.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([33849c6](https://github.com/bountylaboratories/typescript-sdk/commit/33849c6f6ffa2d1bdfea6405c72c99a094c184f9))
|
|
10
|
+
|
|
3
11
|
## 0.27.0 (2025-11-18)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.26.0...v0.27.0](https://github.com/bountylaboratories/typescript-sdk/compare/v0.26.0...v0.27.0)
|
package/package.json
CHANGED
|
@@ -183,6 +183,12 @@ export declare namespace RawRepoRetrieveResponse {
|
|
|
183
183
|
* User display name
|
|
184
184
|
*/
|
|
185
185
|
displayName?: string | null;
|
|
186
|
+
/**
|
|
187
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
188
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
189
|
+
* for unobfuscated email access with intelligent selection.
|
|
190
|
+
*/
|
|
191
|
+
emails?: Array<string> | null;
|
|
186
192
|
/**
|
|
187
193
|
* ISO 8601 timestamp when metadata was extracted
|
|
188
194
|
*/
|
|
@@ -272,6 +278,12 @@ export declare namespace RawRepoRetrieveResponse {
|
|
|
272
278
|
* User display name
|
|
273
279
|
*/
|
|
274
280
|
displayName?: string | null;
|
|
281
|
+
/**
|
|
282
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
283
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
284
|
+
* for unobfuscated email access with intelligent selection.
|
|
285
|
+
*/
|
|
286
|
+
emails?: Array<string> | null;
|
|
275
287
|
/**
|
|
276
288
|
* ISO 8601 timestamp when metadata was extracted
|
|
277
289
|
*/
|
|
@@ -374,6 +386,12 @@ export declare namespace RawRepoRetrieveResponse {
|
|
|
374
386
|
* User display name
|
|
375
387
|
*/
|
|
376
388
|
displayName?: string | null;
|
|
389
|
+
/**
|
|
390
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
391
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
392
|
+
* for unobfuscated email access with intelligent selection.
|
|
393
|
+
*/
|
|
394
|
+
emails?: Array<string> | null;
|
|
377
395
|
/**
|
|
378
396
|
* ISO 8601 timestamp when metadata was extracted
|
|
379
397
|
*/
|
|
@@ -571,6 +589,12 @@ export declare namespace RawRepoByFullnameResponse {
|
|
|
571
589
|
* User display name
|
|
572
590
|
*/
|
|
573
591
|
displayName?: string | null;
|
|
592
|
+
/**
|
|
593
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
594
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
595
|
+
* for unobfuscated email access with intelligent selection.
|
|
596
|
+
*/
|
|
597
|
+
emails?: Array<string> | null;
|
|
574
598
|
/**
|
|
575
599
|
* ISO 8601 timestamp when metadata was extracted
|
|
576
600
|
*/
|
|
@@ -660,6 +684,12 @@ export declare namespace RawRepoByFullnameResponse {
|
|
|
660
684
|
* User display name
|
|
661
685
|
*/
|
|
662
686
|
displayName?: string | null;
|
|
687
|
+
/**
|
|
688
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
689
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
690
|
+
* for unobfuscated email access with intelligent selection.
|
|
691
|
+
*/
|
|
692
|
+
emails?: Array<string> | null;
|
|
663
693
|
/**
|
|
664
694
|
* ISO 8601 timestamp when metadata was extracted
|
|
665
695
|
*/
|
|
@@ -762,6 +792,12 @@ export declare namespace RawRepoByFullnameResponse {
|
|
|
762
792
|
* User display name
|
|
763
793
|
*/
|
|
764
794
|
displayName?: string | null;
|
|
795
|
+
/**
|
|
796
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
797
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
798
|
+
* for unobfuscated email access with intelligent selection.
|
|
799
|
+
*/
|
|
800
|
+
emails?: Array<string> | null;
|
|
765
801
|
/**
|
|
766
802
|
* ISO 8601 timestamp when metadata was extracted
|
|
767
803
|
*/
|
|
@@ -884,6 +920,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
884
920
|
* User display name
|
|
885
921
|
*/
|
|
886
922
|
displayName?: string | null;
|
|
923
|
+
/**
|
|
924
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
925
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
926
|
+
* for unobfuscated email access with intelligent selection.
|
|
927
|
+
*/
|
|
928
|
+
emails?: Array<string> | null;
|
|
887
929
|
/**
|
|
888
930
|
* ISO 8601 timestamp when metadata was extracted
|
|
889
931
|
*/
|
|
@@ -1079,6 +1121,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1079
1121
|
* User display name
|
|
1080
1122
|
*/
|
|
1081
1123
|
displayName?: string | null;
|
|
1124
|
+
/**
|
|
1125
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1126
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1127
|
+
* for unobfuscated email access with intelligent selection.
|
|
1128
|
+
*/
|
|
1129
|
+
emails?: Array<string> | null;
|
|
1082
1130
|
/**
|
|
1083
1131
|
* ISO 8601 timestamp when metadata was extracted
|
|
1084
1132
|
*/
|
|
@@ -1168,6 +1216,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1168
1216
|
* User display name
|
|
1169
1217
|
*/
|
|
1170
1218
|
displayName?: string | null;
|
|
1219
|
+
/**
|
|
1220
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1221
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1222
|
+
* for unobfuscated email access with intelligent selection.
|
|
1223
|
+
*/
|
|
1224
|
+
emails?: Array<string> | null;
|
|
1171
1225
|
/**
|
|
1172
1226
|
* ISO 8601 timestamp when metadata was extracted
|
|
1173
1227
|
*/
|
|
@@ -1270,6 +1324,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1270
1324
|
* User display name
|
|
1271
1325
|
*/
|
|
1272
1326
|
displayName?: string | null;
|
|
1327
|
+
/**
|
|
1328
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1329
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1330
|
+
* for unobfuscated email access with intelligent selection.
|
|
1331
|
+
*/
|
|
1332
|
+
emails?: Array<string> | null;
|
|
1273
1333
|
/**
|
|
1274
1334
|
* ISO 8601 timestamp when metadata was extracted
|
|
1275
1335
|
*/
|
|
@@ -1400,6 +1460,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1400
1460
|
* User display name
|
|
1401
1461
|
*/
|
|
1402
1462
|
displayName?: string | null;
|
|
1463
|
+
/**
|
|
1464
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1465
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1466
|
+
* for unobfuscated email access with intelligent selection.
|
|
1467
|
+
*/
|
|
1468
|
+
emails?: Array<string> | null;
|
|
1403
1469
|
/**
|
|
1404
1470
|
* ISO 8601 timestamp when metadata was extracted
|
|
1405
1471
|
*/
|
|
@@ -1500,6 +1566,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1500
1566
|
* User display name
|
|
1501
1567
|
*/
|
|
1502
1568
|
displayName?: string | null;
|
|
1569
|
+
/**
|
|
1570
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1571
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1572
|
+
* for unobfuscated email access with intelligent selection.
|
|
1573
|
+
*/
|
|
1574
|
+
emails?: Array<string> | null;
|
|
1503
1575
|
/**
|
|
1504
1576
|
* ISO 8601 timestamp when metadata was extracted
|
|
1505
1577
|
*/
|
|
@@ -1698,6 +1770,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1698
1770
|
* User display name
|
|
1699
1771
|
*/
|
|
1700
1772
|
displayName?: string | null;
|
|
1773
|
+
/**
|
|
1774
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1775
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1776
|
+
* for unobfuscated email access with intelligent selection.
|
|
1777
|
+
*/
|
|
1778
|
+
emails?: Array<string> | null;
|
|
1701
1779
|
/**
|
|
1702
1780
|
* ISO 8601 timestamp when metadata was extracted
|
|
1703
1781
|
*/
|
|
@@ -1787,6 +1865,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1787
1865
|
* User display name
|
|
1788
1866
|
*/
|
|
1789
1867
|
displayName?: string | null;
|
|
1868
|
+
/**
|
|
1869
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1870
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1871
|
+
* for unobfuscated email access with intelligent selection.
|
|
1872
|
+
*/
|
|
1873
|
+
emails?: Array<string> | null;
|
|
1790
1874
|
/**
|
|
1791
1875
|
* ISO 8601 timestamp when metadata was extracted
|
|
1792
1876
|
*/
|
|
@@ -1889,6 +1973,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
1889
1973
|
* User display name
|
|
1890
1974
|
*/
|
|
1891
1975
|
displayName?: string | null;
|
|
1976
|
+
/**
|
|
1977
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
1978
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
1979
|
+
* for unobfuscated email access with intelligent selection.
|
|
1980
|
+
*/
|
|
1981
|
+
emails?: Array<string> | null;
|
|
1892
1982
|
/**
|
|
1893
1983
|
* ISO 8601 timestamp when metadata was extracted
|
|
1894
1984
|
*/
|
|
@@ -2106,6 +2196,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2106
2196
|
* User display name
|
|
2107
2197
|
*/
|
|
2108
2198
|
displayName?: string | null;
|
|
2199
|
+
/**
|
|
2200
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
2201
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
2202
|
+
* for unobfuscated email access with intelligent selection.
|
|
2203
|
+
*/
|
|
2204
|
+
emails?: Array<string> | null;
|
|
2109
2205
|
/**
|
|
2110
2206
|
* ISO 8601 timestamp when metadata was extracted
|
|
2111
2207
|
*/
|
|
@@ -2195,6 +2291,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2195
2291
|
* User display name
|
|
2196
2292
|
*/
|
|
2197
2293
|
displayName?: string | null;
|
|
2294
|
+
/**
|
|
2295
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
2296
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
2297
|
+
* for unobfuscated email access with intelligent selection.
|
|
2298
|
+
*/
|
|
2299
|
+
emails?: Array<string> | null;
|
|
2198
2300
|
/**
|
|
2199
2301
|
* ISO 8601 timestamp when metadata was extracted
|
|
2200
2302
|
*/
|
|
@@ -2297,6 +2399,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2297
2399
|
* User display name
|
|
2298
2400
|
*/
|
|
2299
2401
|
displayName?: string | null;
|
|
2402
|
+
/**
|
|
2403
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
2404
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
2405
|
+
* for unobfuscated email access with intelligent selection.
|
|
2406
|
+
*/
|
|
2407
|
+
emails?: Array<string> | null;
|
|
2300
2408
|
/**
|
|
2301
2409
|
* ISO 8601 timestamp when metadata was extracted
|
|
2302
2410
|
*/
|
|
@@ -2433,6 +2541,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2433
2541
|
* User display name
|
|
2434
2542
|
*/
|
|
2435
2543
|
displayName?: string | null;
|
|
2544
|
+
/**
|
|
2545
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
2546
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
2547
|
+
* for unobfuscated email access with intelligent selection.
|
|
2548
|
+
*/
|
|
2549
|
+
emails?: Array<string> | null;
|
|
2436
2550
|
/**
|
|
2437
2551
|
* ISO 8601 timestamp when metadata was extracted
|
|
2438
2552
|
*/
|
|
@@ -2628,6 +2742,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2628
2742
|
* User display name
|
|
2629
2743
|
*/
|
|
2630
2744
|
displayName?: string | null;
|
|
2745
|
+
/**
|
|
2746
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
2747
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
2748
|
+
* for unobfuscated email access with intelligent selection.
|
|
2749
|
+
*/
|
|
2750
|
+
emails?: Array<string> | null;
|
|
2631
2751
|
/**
|
|
2632
2752
|
* ISO 8601 timestamp when metadata was extracted
|
|
2633
2753
|
*/
|
|
@@ -2717,6 +2837,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2717
2837
|
* User display name
|
|
2718
2838
|
*/
|
|
2719
2839
|
displayName?: string | null;
|
|
2840
|
+
/**
|
|
2841
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
2842
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
2843
|
+
* for unobfuscated email access with intelligent selection.
|
|
2844
|
+
*/
|
|
2845
|
+
emails?: Array<string> | null;
|
|
2720
2846
|
/**
|
|
2721
2847
|
* ISO 8601 timestamp when metadata was extracted
|
|
2722
2848
|
*/
|
|
@@ -2819,6 +2945,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2819
2945
|
* User display name
|
|
2820
2946
|
*/
|
|
2821
2947
|
displayName?: string | null;
|
|
2948
|
+
/**
|
|
2949
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
2950
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
2951
|
+
* for unobfuscated email access with intelligent selection.
|
|
2952
|
+
*/
|
|
2953
|
+
emails?: Array<string> | null;
|
|
2822
2954
|
/**
|
|
2823
2955
|
* ISO 8601 timestamp when metadata was extracted
|
|
2824
2956
|
*/
|
|
@@ -2949,6 +3081,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
2949
3081
|
* User display name
|
|
2950
3082
|
*/
|
|
2951
3083
|
displayName?: string | null;
|
|
3084
|
+
/**
|
|
3085
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
3086
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
3087
|
+
* for unobfuscated email access with intelligent selection.
|
|
3088
|
+
*/
|
|
3089
|
+
emails?: Array<string> | null;
|
|
2952
3090
|
/**
|
|
2953
3091
|
* ISO 8601 timestamp when metadata was extracted
|
|
2954
3092
|
*/
|
|
@@ -3049,6 +3187,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3049
3187
|
* User display name
|
|
3050
3188
|
*/
|
|
3051
3189
|
displayName?: string | null;
|
|
3190
|
+
/**
|
|
3191
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
3192
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
3193
|
+
* for unobfuscated email access with intelligent selection.
|
|
3194
|
+
*/
|
|
3195
|
+
emails?: Array<string> | null;
|
|
3052
3196
|
/**
|
|
3053
3197
|
* ISO 8601 timestamp when metadata was extracted
|
|
3054
3198
|
*/
|
|
@@ -3247,6 +3391,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3247
3391
|
* User display name
|
|
3248
3392
|
*/
|
|
3249
3393
|
displayName?: string | null;
|
|
3394
|
+
/**
|
|
3395
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
3396
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
3397
|
+
* for unobfuscated email access with intelligent selection.
|
|
3398
|
+
*/
|
|
3399
|
+
emails?: Array<string> | null;
|
|
3250
3400
|
/**
|
|
3251
3401
|
* ISO 8601 timestamp when metadata was extracted
|
|
3252
3402
|
*/
|
|
@@ -3336,6 +3486,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3336
3486
|
* User display name
|
|
3337
3487
|
*/
|
|
3338
3488
|
displayName?: string | null;
|
|
3489
|
+
/**
|
|
3490
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
3491
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
3492
|
+
* for unobfuscated email access with intelligent selection.
|
|
3493
|
+
*/
|
|
3494
|
+
emails?: Array<string> | null;
|
|
3339
3495
|
/**
|
|
3340
3496
|
* ISO 8601 timestamp when metadata was extracted
|
|
3341
3497
|
*/
|
|
@@ -3438,6 +3594,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3438
3594
|
* User display name
|
|
3439
3595
|
*/
|
|
3440
3596
|
displayName?: string | null;
|
|
3597
|
+
/**
|
|
3598
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
3599
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
3600
|
+
* for unobfuscated email access with intelligent selection.
|
|
3601
|
+
*/
|
|
3602
|
+
emails?: Array<string> | null;
|
|
3441
3603
|
/**
|
|
3442
3604
|
* ISO 8601 timestamp when metadata was extracted
|
|
3443
3605
|
*/
|
|
@@ -3655,6 +3817,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3655
3817
|
* User display name
|
|
3656
3818
|
*/
|
|
3657
3819
|
displayName?: string | null;
|
|
3820
|
+
/**
|
|
3821
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
3822
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
3823
|
+
* for unobfuscated email access with intelligent selection.
|
|
3824
|
+
*/
|
|
3825
|
+
emails?: Array<string> | null;
|
|
3658
3826
|
/**
|
|
3659
3827
|
* ISO 8601 timestamp when metadata was extracted
|
|
3660
3828
|
*/
|
|
@@ -3744,6 +3912,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3744
3912
|
* User display name
|
|
3745
3913
|
*/
|
|
3746
3914
|
displayName?: string | null;
|
|
3915
|
+
/**
|
|
3916
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
3917
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
3918
|
+
* for unobfuscated email access with intelligent selection.
|
|
3919
|
+
*/
|
|
3920
|
+
emails?: Array<string> | null;
|
|
3747
3921
|
/**
|
|
3748
3922
|
* ISO 8601 timestamp when metadata was extracted
|
|
3749
3923
|
*/
|
|
@@ -3846,6 +4020,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3846
4020
|
* User display name
|
|
3847
4021
|
*/
|
|
3848
4022
|
displayName?: string | null;
|
|
4023
|
+
/**
|
|
4024
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
4025
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
4026
|
+
* for unobfuscated email access with intelligent selection.
|
|
4027
|
+
*/
|
|
4028
|
+
emails?: Array<string> | null;
|
|
3849
4029
|
/**
|
|
3850
4030
|
* ISO 8601 timestamp when metadata was extracted
|
|
3851
4031
|
*/
|
|
@@ -3982,6 +4162,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
3982
4162
|
* User display name
|
|
3983
4163
|
*/
|
|
3984
4164
|
displayName?: string | null;
|
|
4165
|
+
/**
|
|
4166
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
4167
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
4168
|
+
* for unobfuscated email access with intelligent selection.
|
|
4169
|
+
*/
|
|
4170
|
+
emails?: Array<string> | null;
|
|
3985
4171
|
/**
|
|
3986
4172
|
* ISO 8601 timestamp when metadata was extracted
|
|
3987
4173
|
*/
|
|
@@ -4177,6 +4363,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4177
4363
|
* User display name
|
|
4178
4364
|
*/
|
|
4179
4365
|
displayName?: string | null;
|
|
4366
|
+
/**
|
|
4367
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
4368
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
4369
|
+
* for unobfuscated email access with intelligent selection.
|
|
4370
|
+
*/
|
|
4371
|
+
emails?: Array<string> | null;
|
|
4180
4372
|
/**
|
|
4181
4373
|
* ISO 8601 timestamp when metadata was extracted
|
|
4182
4374
|
*/
|
|
@@ -4266,6 +4458,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4266
4458
|
* User display name
|
|
4267
4459
|
*/
|
|
4268
4460
|
displayName?: string | null;
|
|
4461
|
+
/**
|
|
4462
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
4463
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
4464
|
+
* for unobfuscated email access with intelligent selection.
|
|
4465
|
+
*/
|
|
4466
|
+
emails?: Array<string> | null;
|
|
4269
4467
|
/**
|
|
4270
4468
|
* ISO 8601 timestamp when metadata was extracted
|
|
4271
4469
|
*/
|
|
@@ -4368,6 +4566,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4368
4566
|
* User display name
|
|
4369
4567
|
*/
|
|
4370
4568
|
displayName?: string | null;
|
|
4569
|
+
/**
|
|
4570
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
4571
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
4572
|
+
* for unobfuscated email access with intelligent selection.
|
|
4573
|
+
*/
|
|
4574
|
+
emails?: Array<string> | null;
|
|
4371
4575
|
/**
|
|
4372
4576
|
* ISO 8601 timestamp when metadata was extracted
|
|
4373
4577
|
*/
|
|
@@ -4498,6 +4702,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4498
4702
|
* User display name
|
|
4499
4703
|
*/
|
|
4500
4704
|
displayName?: string | null;
|
|
4705
|
+
/**
|
|
4706
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
4707
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
4708
|
+
* for unobfuscated email access with intelligent selection.
|
|
4709
|
+
*/
|
|
4710
|
+
emails?: Array<string> | null;
|
|
4501
4711
|
/**
|
|
4502
4712
|
* ISO 8601 timestamp when metadata was extracted
|
|
4503
4713
|
*/
|
|
@@ -4598,6 +4808,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4598
4808
|
* User display name
|
|
4599
4809
|
*/
|
|
4600
4810
|
displayName?: string | null;
|
|
4811
|
+
/**
|
|
4812
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
4813
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
4814
|
+
* for unobfuscated email access with intelligent selection.
|
|
4815
|
+
*/
|
|
4816
|
+
emails?: Array<string> | null;
|
|
4601
4817
|
/**
|
|
4602
4818
|
* ISO 8601 timestamp when metadata was extracted
|
|
4603
4819
|
*/
|
|
@@ -4796,6 +5012,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4796
5012
|
* User display name
|
|
4797
5013
|
*/
|
|
4798
5014
|
displayName?: string | null;
|
|
5015
|
+
/**
|
|
5016
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
5017
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
5018
|
+
* for unobfuscated email access with intelligent selection.
|
|
5019
|
+
*/
|
|
5020
|
+
emails?: Array<string> | null;
|
|
4799
5021
|
/**
|
|
4800
5022
|
* ISO 8601 timestamp when metadata was extracted
|
|
4801
5023
|
*/
|
|
@@ -4885,6 +5107,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4885
5107
|
* User display name
|
|
4886
5108
|
*/
|
|
4887
5109
|
displayName?: string | null;
|
|
5110
|
+
/**
|
|
5111
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
5112
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
5113
|
+
* for unobfuscated email access with intelligent selection.
|
|
5114
|
+
*/
|
|
5115
|
+
emails?: Array<string> | null;
|
|
4888
5116
|
/**
|
|
4889
5117
|
* ISO 8601 timestamp when metadata was extracted
|
|
4890
5118
|
*/
|
|
@@ -4987,6 +5215,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
4987
5215
|
* User display name
|
|
4988
5216
|
*/
|
|
4989
5217
|
displayName?: string | null;
|
|
5218
|
+
/**
|
|
5219
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
5220
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
5221
|
+
* for unobfuscated email access with intelligent selection.
|
|
5222
|
+
*/
|
|
5223
|
+
emails?: Array<string> | null;
|
|
4990
5224
|
/**
|
|
4991
5225
|
* ISO 8601 timestamp when metadata was extracted
|
|
4992
5226
|
*/
|
|
@@ -5204,6 +5438,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
5204
5438
|
* User display name
|
|
5205
5439
|
*/
|
|
5206
5440
|
displayName?: string | null;
|
|
5441
|
+
/**
|
|
5442
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
5443
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
5444
|
+
* for unobfuscated email access with intelligent selection.
|
|
5445
|
+
*/
|
|
5446
|
+
emails?: Array<string> | null;
|
|
5207
5447
|
/**
|
|
5208
5448
|
* ISO 8601 timestamp when metadata was extracted
|
|
5209
5449
|
*/
|
|
@@ -5293,6 +5533,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
5293
5533
|
* User display name
|
|
5294
5534
|
*/
|
|
5295
5535
|
displayName?: string | null;
|
|
5536
|
+
/**
|
|
5537
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
5538
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
5539
|
+
* for unobfuscated email access with intelligent selection.
|
|
5540
|
+
*/
|
|
5541
|
+
emails?: Array<string> | null;
|
|
5296
5542
|
/**
|
|
5297
5543
|
* ISO 8601 timestamp when metadata was extracted
|
|
5298
5544
|
*/
|
|
@@ -5395,6 +5641,12 @@ export declare namespace RawRepoGraphResponse {
|
|
|
5395
5641
|
* User display name
|
|
5396
5642
|
*/
|
|
5397
5643
|
displayName?: string | null;
|
|
5644
|
+
/**
|
|
5645
|
+
* Obfuscated email addresses showing only the last 2 characters of the local part
|
|
5646
|
+
* and full domain (e.g., "\*\*\*oe@gmail.com"). Use /api/users/best-email endpoint
|
|
5647
|
+
* for unobfuscated email access with intelligent selection.
|
|
5648
|
+
*/
|
|
5649
|
+
emails?: Array<string> | null;
|
|
5398
5650
|
/**
|
|
5399
5651
|
* ISO 8601 timestamp when metadata was extracted
|
|
5400
5652
|
*/
|