@atproto/bsky 0.0.141 → 0.0.143
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 +14 -0
- package/dist/api/app/bsky/graph/getSuggestedFollowsByActor.js +2 -2
- package/dist/api/app/bsky/graph/getSuggestedFollowsByActor.js.map +1 -1
- package/dist/data-plane/server/db/database-schema.d.ts +2 -1
- package/dist/data-plane/server/db/database-schema.d.ts.map +1 -1
- package/dist/data-plane/server/db/migrations/20250404T163421487Z-verifications.d.ts +4 -0
- package/dist/data-plane/server/db/migrations/20250404T163421487Z-verifications.d.ts.map +1 -0
- package/dist/data-plane/server/db/migrations/20250404T163421487Z-verifications.js +36 -0
- package/dist/data-plane/server/db/migrations/20250404T163421487Z-verifications.js.map +1 -0
- package/dist/data-plane/server/db/migrations/index.d.ts +1 -0
- package/dist/data-plane/server/db/migrations/index.d.ts.map +1 -1
- package/dist/data-plane/server/db/migrations/index.js +2 -1
- package/dist/data-plane/server/db/migrations/index.js.map +1 -1
- package/dist/data-plane/server/db/tables/actor.d.ts +2 -0
- package/dist/data-plane/server/db/tables/actor.d.ts.map +1 -1
- package/dist/data-plane/server/db/tables/actor.js.map +1 -1
- package/dist/data-plane/server/db/tables/verification.d.ts +18 -0
- package/dist/data-plane/server/db/tables/verification.d.ts.map +1 -0
- package/dist/data-plane/server/db/tables/verification.js +5 -0
- package/dist/data-plane/server/db/tables/verification.js.map +1 -0
- package/dist/data-plane/server/indexing/index.d.ts +2 -0
- package/dist/data-plane/server/indexing/index.d.ts.map +1 -1
- package/dist/data-plane/server/indexing/index.js +2 -0
- package/dist/data-plane/server/indexing/index.js.map +1 -1
- package/dist/data-plane/server/indexing/plugins/verification.d.ts +11 -0
- package/dist/data-plane/server/indexing/plugins/verification.d.ts.map +1 -0
- package/dist/data-plane/server/indexing/plugins/verification.js +95 -0
- package/dist/data-plane/server/indexing/plugins/verification.js.map +1 -0
- package/dist/data-plane/server/routes/profile.d.ts.map +1 -1
- package/dist/data-plane/server/routes/profile.js +28 -1
- package/dist/data-plane/server/routes/profile.js.map +1 -1
- package/dist/data-plane/server/util.d.ts +6 -6
- package/dist/hydration/actor.d.ts +11 -0
- package/dist/hydration/actor.d.ts.map +1 -1
- package/dist/hydration/actor.js +19 -0
- package/dist/hydration/actor.js.map +1 -1
- package/dist/hydration/label.d.ts +1 -0
- package/dist/hydration/label.d.ts.map +1 -1
- package/dist/hydration/label.js +7 -0
- package/dist/hydration/label.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +160 -2
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +80 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts +38 -1
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.js +27 -0
- package/dist/lexicon/types/app/bsky/actor/defs.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/actor/defs.d.ts +1 -0
- package/dist/lexicon/types/chat/bsky/actor/defs.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/actor/defs.js.map +1 -1
- package/dist/proto/bsky_connect.d.ts +30 -1
- package/dist/proto/bsky_connect.d.ts.map +1 -1
- package/dist/proto/bsky_connect.js +29 -0
- package/dist/proto/bsky_connect.js.map +1 -1
- package/dist/proto/bsky_pb.d.ts +243 -0
- package/dist/proto/bsky_pb.d.ts.map +1 -1
- package/dist/proto/bsky_pb.js +733 -5
- package/dist/proto/bsky_pb.js.map +1 -1
- package/dist/views/index.d.ts +2 -1
- package/dist/views/index.d.ts.map +1 -1
- package/dist/views/index.js +42 -0
- package/dist/views/index.js.map +1 -1
- package/package.json +4 -4
- package/proto/bsky.proto +67 -0
- package/src/api/app/bsky/graph/getSuggestedFollowsByActor.ts +2 -2
- package/src/data-plane/server/db/database-schema.ts +3 -1
- package/src/data-plane/server/db/migrations/20250404T163421487Z-verifications.ts +39 -0
- package/src/data-plane/server/db/migrations/index.ts +1 -0
- package/src/data-plane/server/db/tables/actor.ts +3 -0
- package/src/data-plane/server/db/tables/verification.ts +20 -0
- package/src/data-plane/server/indexing/index.ts +8 -2
- package/src/data-plane/server/indexing/plugins/verification.ts +96 -0
- package/src/data-plane/server/routes/profile.ts +63 -19
- package/src/hydration/actor.ts +38 -0
- package/src/hydration/label.ts +12 -0
- package/src/lexicon/lexicons.ts +84 -0
- package/src/lexicon/types/app/bsky/actor/defs.ts +65 -0
- package/src/lexicon/types/chat/bsky/actor/defs.ts +1 -0
- package/src/proto/bsky_connect.ts +35 -0
- package/src/proto/bsky_pb.ts +676 -0
- package/src/views/index.ts +60 -1
- package/tests/views/verification.test.ts +301 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/tsconfig.tests.tsbuildinfo +1 -1
package/dist/proto/bsky_pb.js
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
// @ts-nocheck
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.ClearThreadMutesResponse = exports.ClearThreadMutesRequest = exports.DeleteThreadMuteResponse = exports.DeleteThreadMuteRequest = exports.CreateThreadMuteResponse = exports.CreateThreadMuteRequest = void 0;
|
|
7
|
+
exports.GetVerificationsReceivedRequest = exports.VerificationReceived = exports.GetVerificationsIssuedResponse = exports.GetVerificationsIssuedRequest = exports.VerificationIssued = exports.GetVerificationRecordsResponse = exports.GetVerificationRecordsRequest = exports.VerificationMeta = exports.GetFollowsResponse = exports.GetFollowsRequest = exports.GetFollowersResponse = exports.FollowInfo = exports.GetFollowersRequest = exports.GetActorFollowsActorsResponse = exports.GetActorFollowsActorsRequest = exports.GetStarterPackRecordsResponse = exports.GetStarterPackRecordsRequest = exports.GetAllLabelersResponse = exports.GetAllLabelersRequest = exports.GetLabelerRecordsResponse = exports.GetLabelerRecordsRequest = exports.GetPostgateRecordsResponse = exports.GetPostgateRecordsRequest = exports.GetThreadGateRecordsResponse = exports.GetThreadGateRecordsRequest = exports.GetRepostRecordsResponse = exports.GetRepostRecordsRequest = exports.GetActorChatDeclarationRecordsResponse = exports.GetActorChatDeclarationRecordsRequest = exports.GetProfileRecordsResponse = exports.GetProfileRecordsRequest = exports.GetPostRecordsResponse = exports.GetPostRecordsRequest = exports.PostRecordMeta = exports.GetListRecordsResponse = exports.GetListRecordsRequest = exports.GetListItemRecordsResponse = exports.GetListItemRecordsRequest = exports.GetListBlockRecordsResponse = exports.GetListBlockRecordsRequest = exports.GetLikeRecordsResponse = exports.GetLikeRecordsRequest = exports.GetFollowRecordsResponse = exports.GetFollowRecordsRequest = exports.GetFeedGeneratorRecordsResponse = exports.GetFeedGeneratorRecordsRequest = exports.GetBlockRecordsResponse = exports.GetBlockRecordsRequest = exports.Record = exports.FeedType = void 0;
|
|
8
|
+
exports.GetActorListsResponse = exports.GetActorListsRequest = exports.GetListCountResponse = exports.GetListCountRequest = exports.GetListMembershipResponse = exports.GetListMembershipRequest = exports.GetListMembersResponse = exports.GetListMembersRequest = exports.ListItemInfo = exports.GetBlockExistenceResponse = exports.GetBlockExistenceRequest = exports.BlockExistence = exports.RelationshipPair = exports.GetRelationshipsResponse = exports.Relationships = exports.GetRelationshipsRequest = exports.GetDidsByHandlesResponse = exports.GetDidsByHandlesRequest = exports.GetActorsResponse = exports.ActorInfo = exports.GetActorsRequest = exports.GetActorRepostsResponse = exports.GetActorRepostsRequest = exports.GetRepostsByActorAndSubjectsResponse = exports.RecordRef = exports.GetRepostsByActorAndSubjectsRequest = exports.GetRepostsBySubjectResponse = exports.GetRepostsBySubjectRequest = exports.GetNewUserCountForRangeResponse = exports.GetNewUserCountForRangeRequest = exports.GetListCountsResponse = exports.GetListCountsRequest = exports.GetStarterPackCountsResponse = exports.GetStarterPackCountsRequest = exports.GetCountsForUsersResponse = exports.GetCountsForUsersRequest = exports.GetInteractionCountsResponse = exports.GetInteractionCountsRequest = exports.GetActorLikesResponse = exports.LikeInfo = exports.GetActorLikesRequest = exports.GetLikesByActorAndSubjectsResponse = exports.GetLikesByActorAndSubjectsRequest = exports.GetQuotesBySubjectSortedResponse = exports.GetQuotesBySubjectSortedRequest = exports.GetLikesBySubjectSortedResponse = exports.GetLikesBySubjectSortedRequest = exports.GetLikesBySubjectResponse = exports.GetLikesBySubjectRequest = exports.GetVerificationsReceivedResponse = void 0;
|
|
9
|
+
exports.SearchActorsRequest = exports.GetThreadResponse = exports.GetThreadRequest = exports.GetListFeedResponse = exports.GetListFeedRequest = exports.TimelineFeedItem = exports.GetTimelineResponse = exports.GetTimelineRequest = exports.GetAuthorFeedResponse = exports.AuthorFeedItem = exports.GetAuthorFeedRequest = exports.GetFeedGeneratorStatusResponse = exports.GetFeedGeneratorStatusRequest = exports.SearchFeedGeneratorsResponse = exports.SearchFeedGeneratorsRequest = exports.GetSuggestedFeedsResponse = exports.GetSuggestedFeedsRequest = exports.GetActorFeedsResponse = exports.GetActorFeedsRequest = exports.GetUnreadNotificationCountResponse = exports.GetUnreadNotificationCountRequest = exports.GetNotificationSeenResponse = exports.GetNotificationSeenRequest = exports.UpdateNotificationSeenResponse = exports.UpdateNotificationSeenRequest = exports.GetNotificationsResponse = exports.Notification = exports.GetNotificationsRequest = exports.GetBlocklistSubscriptionsResponse = exports.GetBlocklistSubscriptionsRequest = exports.GetBlocklistSubscriptionResponse = exports.GetBlocklistSubscriptionRequest = exports.GetBidirectionalBlockViaListResponse = exports.GetBidirectionalBlockViaListRequest = exports.GetBlocksResponse = exports.GetBlocksRequest = exports.GetBidirectionalBlockResponse = exports.GetBidirectionalBlockRequest = exports.GetThreadMutesOnSubjectsResponse = exports.GetThreadMutesOnSubjectsRequest = exports.GetMutelistSubscriptionsResponse = exports.GetMutelistSubscriptionsRequest = exports.GetMutelistSubscriptionResponse = exports.GetMutelistSubscriptionRequest = exports.GetActorMutesActorViaListResponse = exports.GetActorMutesActorViaListRequest = exports.GetMutesResponse = exports.GetMutesRequest = exports.GetActorMutesActorResponse = exports.GetActorMutesActorRequest = void 0;
|
|
10
|
+
exports.DeleteActorMuteRequest = exports.CreateActorMuteResponse = exports.CreateActorMuteRequest = exports.UntakedownRecordResponse = exports.UntakedownRecordRequest = exports.TakedownRecordResponse = exports.TakedownRecordRequest = exports.UntakedownBlobResponse = exports.UntakedownBlobRequest = exports.TakedownBlobResponse = exports.TakedownBlobRequest = exports.UntakedownActorResponse = exports.UntakedownActorRequest = exports.TakedownActorResponse = exports.TakedownActorRequest = exports.UpdateActorUpstreamStatusResponse = exports.UpdateActorUpstreamStatusRequest = exports.PingResponse = exports.PingRequest = exports.GetFollowsFollowingResponse = exports.FollowsFollowing = exports.GetFollowsFollowingRequest = exports.GetRecordTakedownResponse = exports.GetRecordTakedownRequest = exports.GetActorTakedownResponse = exports.GetActorTakedownRequest = exports.GetBlobTakedownResponse = exports.GetBlobTakedownRequest = exports.GetIdentityByHandleResponse = exports.GetIdentityByHandleRequest = exports.GetIdentityByDidResponse = exports.GetIdentityByDidRequest = exports.GetLatestRevResponse = exports.GetLatestRevRequest = exports.GetActorStarterPacksResponse = exports.GetActorStarterPacksRequest = exports.GetLabelsResponse = exports.GetLabelsRequest = exports.GetPostReplyCountsResponse = exports.GetPostReplyCountsRequest = exports.GetSuggestedEntitiesResponse = exports.GetSuggestedEntitiesRequest = exports.SuggestedEntity = exports.GetFollowSuggestionsResponse = exports.GetFollowSuggestionsRequest = exports.SearchStarterPacksResponse = exports.SearchStarterPacksRequest = exports.SearchPostsResponse = exports.SearchPostsRequest = exports.SearchActorsResponse = void 0;
|
|
11
|
+
exports.ClearThreadMutesResponse = exports.ClearThreadMutesRequest = exports.DeleteThreadMuteResponse = exports.DeleteThreadMuteRequest = exports.CreateThreadMuteResponse = exports.CreateThreadMuteRequest = exports.ClearActorMutelistSubscriptionsResponse = exports.ClearActorMutelistSubscriptionsRequest = exports.DeleteActorMutelistSubscriptionResponse = exports.DeleteActorMutelistSubscriptionRequest = exports.CreateActorMutelistSubscriptionResponse = exports.CreateActorMutelistSubscriptionRequest = exports.ClearActorMutesResponse = exports.ClearActorMutesRequest = exports.DeleteActorMuteResponse = void 0;
|
|
12
12
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
13
13
|
/**
|
|
14
14
|
* @generated from enum bsky.FeedType
|
|
@@ -2507,6 +2507,693 @@ Object.defineProperty(GetFollowsResponse, "fields", {
|
|
|
2507
2507
|
{ no: 2, name: 'cursor', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2508
2508
|
])
|
|
2509
2509
|
});
|
|
2510
|
+
/**
|
|
2511
|
+
* @generated from message bsky.VerificationMeta
|
|
2512
|
+
*/
|
|
2513
|
+
class VerificationMeta extends protobuf_1.Message {
|
|
2514
|
+
constructor(data) {
|
|
2515
|
+
super();
|
|
2516
|
+
/**
|
|
2517
|
+
* @generated from field: string rkey = 1;
|
|
2518
|
+
*/
|
|
2519
|
+
Object.defineProperty(this, "rkey", {
|
|
2520
|
+
enumerable: true,
|
|
2521
|
+
configurable: true,
|
|
2522
|
+
writable: true,
|
|
2523
|
+
value: ''
|
|
2524
|
+
});
|
|
2525
|
+
/**
|
|
2526
|
+
* @generated from field: string handle = 2;
|
|
2527
|
+
*/
|
|
2528
|
+
Object.defineProperty(this, "handle", {
|
|
2529
|
+
enumerable: true,
|
|
2530
|
+
configurable: true,
|
|
2531
|
+
writable: true,
|
|
2532
|
+
value: ''
|
|
2533
|
+
});
|
|
2534
|
+
/**
|
|
2535
|
+
* @generated from field: string display_name = 3;
|
|
2536
|
+
*/
|
|
2537
|
+
Object.defineProperty(this, "displayName", {
|
|
2538
|
+
enumerable: true,
|
|
2539
|
+
configurable: true,
|
|
2540
|
+
writable: true,
|
|
2541
|
+
value: ''
|
|
2542
|
+
});
|
|
2543
|
+
/**
|
|
2544
|
+
* @generated from field: google.protobuf.Timestamp sorted_at = 4;
|
|
2545
|
+
*/
|
|
2546
|
+
Object.defineProperty(this, "sortedAt", {
|
|
2547
|
+
enumerable: true,
|
|
2548
|
+
configurable: true,
|
|
2549
|
+
writable: true,
|
|
2550
|
+
value: void 0
|
|
2551
|
+
});
|
|
2552
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2553
|
+
}
|
|
2554
|
+
static fromBinary(bytes, options) {
|
|
2555
|
+
return new VerificationMeta().fromBinary(bytes, options);
|
|
2556
|
+
}
|
|
2557
|
+
static fromJson(jsonValue, options) {
|
|
2558
|
+
return new VerificationMeta().fromJson(jsonValue, options);
|
|
2559
|
+
}
|
|
2560
|
+
static fromJsonString(jsonString, options) {
|
|
2561
|
+
return new VerificationMeta().fromJsonString(jsonString, options);
|
|
2562
|
+
}
|
|
2563
|
+
static equals(a, b) {
|
|
2564
|
+
return protobuf_1.proto3.util.equals(VerificationMeta, a, b);
|
|
2565
|
+
}
|
|
2566
|
+
}
|
|
2567
|
+
exports.VerificationMeta = VerificationMeta;
|
|
2568
|
+
Object.defineProperty(VerificationMeta, "runtime", {
|
|
2569
|
+
enumerable: true,
|
|
2570
|
+
configurable: true,
|
|
2571
|
+
writable: true,
|
|
2572
|
+
value: protobuf_1.proto3
|
|
2573
|
+
});
|
|
2574
|
+
Object.defineProperty(VerificationMeta, "typeName", {
|
|
2575
|
+
enumerable: true,
|
|
2576
|
+
configurable: true,
|
|
2577
|
+
writable: true,
|
|
2578
|
+
value: 'bsky.VerificationMeta'
|
|
2579
|
+
});
|
|
2580
|
+
Object.defineProperty(VerificationMeta, "fields", {
|
|
2581
|
+
enumerable: true,
|
|
2582
|
+
configurable: true,
|
|
2583
|
+
writable: true,
|
|
2584
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
2585
|
+
{ no: 1, name: 'rkey', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2586
|
+
{ no: 2, name: 'handle', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2587
|
+
{
|
|
2588
|
+
no: 3,
|
|
2589
|
+
name: 'display_name',
|
|
2590
|
+
kind: 'scalar',
|
|
2591
|
+
T: 9 /* ScalarType.STRING */,
|
|
2592
|
+
},
|
|
2593
|
+
{ no: 4, name: 'sorted_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
2594
|
+
])
|
|
2595
|
+
});
|
|
2596
|
+
/**
|
|
2597
|
+
* @generated from message bsky.GetVerificationRecordsRequest
|
|
2598
|
+
*/
|
|
2599
|
+
class GetVerificationRecordsRequest extends protobuf_1.Message {
|
|
2600
|
+
constructor(data) {
|
|
2601
|
+
super();
|
|
2602
|
+
/**
|
|
2603
|
+
* @generated from field: repeated string uris = 1;
|
|
2604
|
+
*/
|
|
2605
|
+
Object.defineProperty(this, "uris", {
|
|
2606
|
+
enumerable: true,
|
|
2607
|
+
configurable: true,
|
|
2608
|
+
writable: true,
|
|
2609
|
+
value: []
|
|
2610
|
+
});
|
|
2611
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2612
|
+
}
|
|
2613
|
+
static fromBinary(bytes, options) {
|
|
2614
|
+
return new GetVerificationRecordsRequest().fromBinary(bytes, options);
|
|
2615
|
+
}
|
|
2616
|
+
static fromJson(jsonValue, options) {
|
|
2617
|
+
return new GetVerificationRecordsRequest().fromJson(jsonValue, options);
|
|
2618
|
+
}
|
|
2619
|
+
static fromJsonString(jsonString, options) {
|
|
2620
|
+
return new GetVerificationRecordsRequest().fromJsonString(jsonString, options);
|
|
2621
|
+
}
|
|
2622
|
+
static equals(a, b) {
|
|
2623
|
+
return protobuf_1.proto3.util.equals(GetVerificationRecordsRequest, a, b);
|
|
2624
|
+
}
|
|
2625
|
+
}
|
|
2626
|
+
exports.GetVerificationRecordsRequest = GetVerificationRecordsRequest;
|
|
2627
|
+
Object.defineProperty(GetVerificationRecordsRequest, "runtime", {
|
|
2628
|
+
enumerable: true,
|
|
2629
|
+
configurable: true,
|
|
2630
|
+
writable: true,
|
|
2631
|
+
value: protobuf_1.proto3
|
|
2632
|
+
});
|
|
2633
|
+
Object.defineProperty(GetVerificationRecordsRequest, "typeName", {
|
|
2634
|
+
enumerable: true,
|
|
2635
|
+
configurable: true,
|
|
2636
|
+
writable: true,
|
|
2637
|
+
value: 'bsky.GetVerificationRecordsRequest'
|
|
2638
|
+
});
|
|
2639
|
+
Object.defineProperty(GetVerificationRecordsRequest, "fields", {
|
|
2640
|
+
enumerable: true,
|
|
2641
|
+
configurable: true,
|
|
2642
|
+
writable: true,
|
|
2643
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
2644
|
+
{
|
|
2645
|
+
no: 1,
|
|
2646
|
+
name: 'uris',
|
|
2647
|
+
kind: 'scalar',
|
|
2648
|
+
T: 9 /* ScalarType.STRING */,
|
|
2649
|
+
repeated: true,
|
|
2650
|
+
},
|
|
2651
|
+
])
|
|
2652
|
+
});
|
|
2653
|
+
/**
|
|
2654
|
+
* @generated from message bsky.GetVerificationRecordsResponse
|
|
2655
|
+
*/
|
|
2656
|
+
class GetVerificationRecordsResponse extends protobuf_1.Message {
|
|
2657
|
+
constructor(data) {
|
|
2658
|
+
super();
|
|
2659
|
+
/**
|
|
2660
|
+
* @generated from field: repeated bsky.Record records = 1;
|
|
2661
|
+
*/
|
|
2662
|
+
Object.defineProperty(this, "records", {
|
|
2663
|
+
enumerable: true,
|
|
2664
|
+
configurable: true,
|
|
2665
|
+
writable: true,
|
|
2666
|
+
value: []
|
|
2667
|
+
});
|
|
2668
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2669
|
+
}
|
|
2670
|
+
static fromBinary(bytes, options) {
|
|
2671
|
+
return new GetVerificationRecordsResponse().fromBinary(bytes, options);
|
|
2672
|
+
}
|
|
2673
|
+
static fromJson(jsonValue, options) {
|
|
2674
|
+
return new GetVerificationRecordsResponse().fromJson(jsonValue, options);
|
|
2675
|
+
}
|
|
2676
|
+
static fromJsonString(jsonString, options) {
|
|
2677
|
+
return new GetVerificationRecordsResponse().fromJsonString(jsonString, options);
|
|
2678
|
+
}
|
|
2679
|
+
static equals(a, b) {
|
|
2680
|
+
return protobuf_1.proto3.util.equals(GetVerificationRecordsResponse, a, b);
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2683
|
+
exports.GetVerificationRecordsResponse = GetVerificationRecordsResponse;
|
|
2684
|
+
Object.defineProperty(GetVerificationRecordsResponse, "runtime", {
|
|
2685
|
+
enumerable: true,
|
|
2686
|
+
configurable: true,
|
|
2687
|
+
writable: true,
|
|
2688
|
+
value: protobuf_1.proto3
|
|
2689
|
+
});
|
|
2690
|
+
Object.defineProperty(GetVerificationRecordsResponse, "typeName", {
|
|
2691
|
+
enumerable: true,
|
|
2692
|
+
configurable: true,
|
|
2693
|
+
writable: true,
|
|
2694
|
+
value: 'bsky.GetVerificationRecordsResponse'
|
|
2695
|
+
});
|
|
2696
|
+
Object.defineProperty(GetVerificationRecordsResponse, "fields", {
|
|
2697
|
+
enumerable: true,
|
|
2698
|
+
configurable: true,
|
|
2699
|
+
writable: true,
|
|
2700
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
2701
|
+
{ no: 1, name: 'records', kind: 'message', T: Record, repeated: true },
|
|
2702
|
+
])
|
|
2703
|
+
});
|
|
2704
|
+
/**
|
|
2705
|
+
* @generated from message bsky.VerificationIssued
|
|
2706
|
+
*/
|
|
2707
|
+
class VerificationIssued extends protobuf_1.Message {
|
|
2708
|
+
constructor(data) {
|
|
2709
|
+
super();
|
|
2710
|
+
/**
|
|
2711
|
+
* @generated from field: string actor_did = 1;
|
|
2712
|
+
*/
|
|
2713
|
+
Object.defineProperty(this, "actorDid", {
|
|
2714
|
+
enumerable: true,
|
|
2715
|
+
configurable: true,
|
|
2716
|
+
writable: true,
|
|
2717
|
+
value: ''
|
|
2718
|
+
});
|
|
2719
|
+
/**
|
|
2720
|
+
* @generated from field: string rkey = 2;
|
|
2721
|
+
*/
|
|
2722
|
+
Object.defineProperty(this, "rkey", {
|
|
2723
|
+
enumerable: true,
|
|
2724
|
+
configurable: true,
|
|
2725
|
+
writable: true,
|
|
2726
|
+
value: ''
|
|
2727
|
+
});
|
|
2728
|
+
/**
|
|
2729
|
+
* @generated from field: string subject_did = 3;
|
|
2730
|
+
*/
|
|
2731
|
+
Object.defineProperty(this, "subjectDid", {
|
|
2732
|
+
enumerable: true,
|
|
2733
|
+
configurable: true,
|
|
2734
|
+
writable: true,
|
|
2735
|
+
value: ''
|
|
2736
|
+
});
|
|
2737
|
+
/**
|
|
2738
|
+
* @generated from field: google.protobuf.Timestamp created_at = 7;
|
|
2739
|
+
*/
|
|
2740
|
+
Object.defineProperty(this, "createdAt", {
|
|
2741
|
+
enumerable: true,
|
|
2742
|
+
configurable: true,
|
|
2743
|
+
writable: true,
|
|
2744
|
+
value: void 0
|
|
2745
|
+
});
|
|
2746
|
+
/**
|
|
2747
|
+
* @generated from field: google.protobuf.Timestamp indexed_at = 8;
|
|
2748
|
+
*/
|
|
2749
|
+
Object.defineProperty(this, "indexedAt", {
|
|
2750
|
+
enumerable: true,
|
|
2751
|
+
configurable: true,
|
|
2752
|
+
writable: true,
|
|
2753
|
+
value: void 0
|
|
2754
|
+
});
|
|
2755
|
+
/**
|
|
2756
|
+
* @generated from field: google.protobuf.Timestamp sorted_at = 9;
|
|
2757
|
+
*/
|
|
2758
|
+
Object.defineProperty(this, "sortedAt", {
|
|
2759
|
+
enumerable: true,
|
|
2760
|
+
configurable: true,
|
|
2761
|
+
writable: true,
|
|
2762
|
+
value: void 0
|
|
2763
|
+
});
|
|
2764
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2765
|
+
}
|
|
2766
|
+
static fromBinary(bytes, options) {
|
|
2767
|
+
return new VerificationIssued().fromBinary(bytes, options);
|
|
2768
|
+
}
|
|
2769
|
+
static fromJson(jsonValue, options) {
|
|
2770
|
+
return new VerificationIssued().fromJson(jsonValue, options);
|
|
2771
|
+
}
|
|
2772
|
+
static fromJsonString(jsonString, options) {
|
|
2773
|
+
return new VerificationIssued().fromJsonString(jsonString, options);
|
|
2774
|
+
}
|
|
2775
|
+
static equals(a, b) {
|
|
2776
|
+
return protobuf_1.proto3.util.equals(VerificationIssued, a, b);
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
exports.VerificationIssued = VerificationIssued;
|
|
2780
|
+
Object.defineProperty(VerificationIssued, "runtime", {
|
|
2781
|
+
enumerable: true,
|
|
2782
|
+
configurable: true,
|
|
2783
|
+
writable: true,
|
|
2784
|
+
value: protobuf_1.proto3
|
|
2785
|
+
});
|
|
2786
|
+
Object.defineProperty(VerificationIssued, "typeName", {
|
|
2787
|
+
enumerable: true,
|
|
2788
|
+
configurable: true,
|
|
2789
|
+
writable: true,
|
|
2790
|
+
value: 'bsky.VerificationIssued'
|
|
2791
|
+
});
|
|
2792
|
+
Object.defineProperty(VerificationIssued, "fields", {
|
|
2793
|
+
enumerable: true,
|
|
2794
|
+
configurable: true,
|
|
2795
|
+
writable: true,
|
|
2796
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
2797
|
+
{ no: 1, name: 'actor_did', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2798
|
+
{ no: 2, name: 'rkey', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2799
|
+
{
|
|
2800
|
+
no: 3,
|
|
2801
|
+
name: 'subject_did',
|
|
2802
|
+
kind: 'scalar',
|
|
2803
|
+
T: 9 /* ScalarType.STRING */,
|
|
2804
|
+
},
|
|
2805
|
+
{ no: 7, name: 'created_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
2806
|
+
{ no: 8, name: 'indexed_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
2807
|
+
{ no: 9, name: 'sorted_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
2808
|
+
])
|
|
2809
|
+
});
|
|
2810
|
+
/**
|
|
2811
|
+
* @generated from message bsky.GetVerificationsIssuedRequest
|
|
2812
|
+
*/
|
|
2813
|
+
class GetVerificationsIssuedRequest extends protobuf_1.Message {
|
|
2814
|
+
constructor(data) {
|
|
2815
|
+
super();
|
|
2816
|
+
/**
|
|
2817
|
+
* @generated from field: string actor_did = 1;
|
|
2818
|
+
*/
|
|
2819
|
+
Object.defineProperty(this, "actorDid", {
|
|
2820
|
+
enumerable: true,
|
|
2821
|
+
configurable: true,
|
|
2822
|
+
writable: true,
|
|
2823
|
+
value: ''
|
|
2824
|
+
});
|
|
2825
|
+
/**
|
|
2826
|
+
* @generated from field: int32 limit = 2;
|
|
2827
|
+
*/
|
|
2828
|
+
Object.defineProperty(this, "limit", {
|
|
2829
|
+
enumerable: true,
|
|
2830
|
+
configurable: true,
|
|
2831
|
+
writable: true,
|
|
2832
|
+
value: 0
|
|
2833
|
+
});
|
|
2834
|
+
/**
|
|
2835
|
+
* @generated from field: string cursor = 3;
|
|
2836
|
+
*/
|
|
2837
|
+
Object.defineProperty(this, "cursor", {
|
|
2838
|
+
enumerable: true,
|
|
2839
|
+
configurable: true,
|
|
2840
|
+
writable: true,
|
|
2841
|
+
value: ''
|
|
2842
|
+
});
|
|
2843
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2844
|
+
}
|
|
2845
|
+
static fromBinary(bytes, options) {
|
|
2846
|
+
return new GetVerificationsIssuedRequest().fromBinary(bytes, options);
|
|
2847
|
+
}
|
|
2848
|
+
static fromJson(jsonValue, options) {
|
|
2849
|
+
return new GetVerificationsIssuedRequest().fromJson(jsonValue, options);
|
|
2850
|
+
}
|
|
2851
|
+
static fromJsonString(jsonString, options) {
|
|
2852
|
+
return new GetVerificationsIssuedRequest().fromJsonString(jsonString, options);
|
|
2853
|
+
}
|
|
2854
|
+
static equals(a, b) {
|
|
2855
|
+
return protobuf_1.proto3.util.equals(GetVerificationsIssuedRequest, a, b);
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2858
|
+
exports.GetVerificationsIssuedRequest = GetVerificationsIssuedRequest;
|
|
2859
|
+
Object.defineProperty(GetVerificationsIssuedRequest, "runtime", {
|
|
2860
|
+
enumerable: true,
|
|
2861
|
+
configurable: true,
|
|
2862
|
+
writable: true,
|
|
2863
|
+
value: protobuf_1.proto3
|
|
2864
|
+
});
|
|
2865
|
+
Object.defineProperty(GetVerificationsIssuedRequest, "typeName", {
|
|
2866
|
+
enumerable: true,
|
|
2867
|
+
configurable: true,
|
|
2868
|
+
writable: true,
|
|
2869
|
+
value: 'bsky.GetVerificationsIssuedRequest'
|
|
2870
|
+
});
|
|
2871
|
+
Object.defineProperty(GetVerificationsIssuedRequest, "fields", {
|
|
2872
|
+
enumerable: true,
|
|
2873
|
+
configurable: true,
|
|
2874
|
+
writable: true,
|
|
2875
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
2876
|
+
{ no: 1, name: 'actor_did', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2877
|
+
{ no: 2, name: 'limit', kind: 'scalar', T: 5 /* ScalarType.INT32 */ },
|
|
2878
|
+
{ no: 3, name: 'cursor', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2879
|
+
])
|
|
2880
|
+
});
|
|
2881
|
+
/**
|
|
2882
|
+
* @generated from message bsky.GetVerificationsIssuedResponse
|
|
2883
|
+
*/
|
|
2884
|
+
class GetVerificationsIssuedResponse extends protobuf_1.Message {
|
|
2885
|
+
constructor(data) {
|
|
2886
|
+
super();
|
|
2887
|
+
/**
|
|
2888
|
+
* @generated from field: repeated bsky.VerificationIssued verifications = 1;
|
|
2889
|
+
*/
|
|
2890
|
+
Object.defineProperty(this, "verifications", {
|
|
2891
|
+
enumerable: true,
|
|
2892
|
+
configurable: true,
|
|
2893
|
+
writable: true,
|
|
2894
|
+
value: []
|
|
2895
|
+
});
|
|
2896
|
+
/**
|
|
2897
|
+
* @generated from field: string cursor = 2;
|
|
2898
|
+
*/
|
|
2899
|
+
Object.defineProperty(this, "cursor", {
|
|
2900
|
+
enumerable: true,
|
|
2901
|
+
configurable: true,
|
|
2902
|
+
writable: true,
|
|
2903
|
+
value: ''
|
|
2904
|
+
});
|
|
2905
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2906
|
+
}
|
|
2907
|
+
static fromBinary(bytes, options) {
|
|
2908
|
+
return new GetVerificationsIssuedResponse().fromBinary(bytes, options);
|
|
2909
|
+
}
|
|
2910
|
+
static fromJson(jsonValue, options) {
|
|
2911
|
+
return new GetVerificationsIssuedResponse().fromJson(jsonValue, options);
|
|
2912
|
+
}
|
|
2913
|
+
static fromJsonString(jsonString, options) {
|
|
2914
|
+
return new GetVerificationsIssuedResponse().fromJsonString(jsonString, options);
|
|
2915
|
+
}
|
|
2916
|
+
static equals(a, b) {
|
|
2917
|
+
return protobuf_1.proto3.util.equals(GetVerificationsIssuedResponse, a, b);
|
|
2918
|
+
}
|
|
2919
|
+
}
|
|
2920
|
+
exports.GetVerificationsIssuedResponse = GetVerificationsIssuedResponse;
|
|
2921
|
+
Object.defineProperty(GetVerificationsIssuedResponse, "runtime", {
|
|
2922
|
+
enumerable: true,
|
|
2923
|
+
configurable: true,
|
|
2924
|
+
writable: true,
|
|
2925
|
+
value: protobuf_1.proto3
|
|
2926
|
+
});
|
|
2927
|
+
Object.defineProperty(GetVerificationsIssuedResponse, "typeName", {
|
|
2928
|
+
enumerable: true,
|
|
2929
|
+
configurable: true,
|
|
2930
|
+
writable: true,
|
|
2931
|
+
value: 'bsky.GetVerificationsIssuedResponse'
|
|
2932
|
+
});
|
|
2933
|
+
Object.defineProperty(GetVerificationsIssuedResponse, "fields", {
|
|
2934
|
+
enumerable: true,
|
|
2935
|
+
configurable: true,
|
|
2936
|
+
writable: true,
|
|
2937
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
2938
|
+
{
|
|
2939
|
+
no: 1,
|
|
2940
|
+
name: 'verifications',
|
|
2941
|
+
kind: 'message',
|
|
2942
|
+
T: VerificationIssued,
|
|
2943
|
+
repeated: true,
|
|
2944
|
+
},
|
|
2945
|
+
{ no: 2, name: 'cursor', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
2946
|
+
])
|
|
2947
|
+
});
|
|
2948
|
+
/**
|
|
2949
|
+
* @generated from message bsky.VerificationReceived
|
|
2950
|
+
*/
|
|
2951
|
+
class VerificationReceived extends protobuf_1.Message {
|
|
2952
|
+
constructor(data) {
|
|
2953
|
+
super();
|
|
2954
|
+
/**
|
|
2955
|
+
* @generated from field: string actor_did = 1;
|
|
2956
|
+
*/
|
|
2957
|
+
Object.defineProperty(this, "actorDid", {
|
|
2958
|
+
enumerable: true,
|
|
2959
|
+
configurable: true,
|
|
2960
|
+
writable: true,
|
|
2961
|
+
value: ''
|
|
2962
|
+
});
|
|
2963
|
+
/**
|
|
2964
|
+
* @generated from field: string rkey = 2;
|
|
2965
|
+
*/
|
|
2966
|
+
Object.defineProperty(this, "rkey", {
|
|
2967
|
+
enumerable: true,
|
|
2968
|
+
configurable: true,
|
|
2969
|
+
writable: true,
|
|
2970
|
+
value: ''
|
|
2971
|
+
});
|
|
2972
|
+
/**
|
|
2973
|
+
* @generated from field: string subject_did = 3;
|
|
2974
|
+
*/
|
|
2975
|
+
Object.defineProperty(this, "subjectDid", {
|
|
2976
|
+
enumerable: true,
|
|
2977
|
+
configurable: true,
|
|
2978
|
+
writable: true,
|
|
2979
|
+
value: ''
|
|
2980
|
+
});
|
|
2981
|
+
/**
|
|
2982
|
+
* @generated from field: google.protobuf.Timestamp created_at = 7;
|
|
2983
|
+
*/
|
|
2984
|
+
Object.defineProperty(this, "createdAt", {
|
|
2985
|
+
enumerable: true,
|
|
2986
|
+
configurable: true,
|
|
2987
|
+
writable: true,
|
|
2988
|
+
value: void 0
|
|
2989
|
+
});
|
|
2990
|
+
/**
|
|
2991
|
+
* @generated from field: google.protobuf.Timestamp indexed_at = 8;
|
|
2992
|
+
*/
|
|
2993
|
+
Object.defineProperty(this, "indexedAt", {
|
|
2994
|
+
enumerable: true,
|
|
2995
|
+
configurable: true,
|
|
2996
|
+
writable: true,
|
|
2997
|
+
value: void 0
|
|
2998
|
+
});
|
|
2999
|
+
/**
|
|
3000
|
+
* @generated from field: google.protobuf.Timestamp sorted_at = 9;
|
|
3001
|
+
*/
|
|
3002
|
+
Object.defineProperty(this, "sortedAt", {
|
|
3003
|
+
enumerable: true,
|
|
3004
|
+
configurable: true,
|
|
3005
|
+
writable: true,
|
|
3006
|
+
value: void 0
|
|
3007
|
+
});
|
|
3008
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
3009
|
+
}
|
|
3010
|
+
static fromBinary(bytes, options) {
|
|
3011
|
+
return new VerificationReceived().fromBinary(bytes, options);
|
|
3012
|
+
}
|
|
3013
|
+
static fromJson(jsonValue, options) {
|
|
3014
|
+
return new VerificationReceived().fromJson(jsonValue, options);
|
|
3015
|
+
}
|
|
3016
|
+
static fromJsonString(jsonString, options) {
|
|
3017
|
+
return new VerificationReceived().fromJsonString(jsonString, options);
|
|
3018
|
+
}
|
|
3019
|
+
static equals(a, b) {
|
|
3020
|
+
return protobuf_1.proto3.util.equals(VerificationReceived, a, b);
|
|
3021
|
+
}
|
|
3022
|
+
}
|
|
3023
|
+
exports.VerificationReceived = VerificationReceived;
|
|
3024
|
+
Object.defineProperty(VerificationReceived, "runtime", {
|
|
3025
|
+
enumerable: true,
|
|
3026
|
+
configurable: true,
|
|
3027
|
+
writable: true,
|
|
3028
|
+
value: protobuf_1.proto3
|
|
3029
|
+
});
|
|
3030
|
+
Object.defineProperty(VerificationReceived, "typeName", {
|
|
3031
|
+
enumerable: true,
|
|
3032
|
+
configurable: true,
|
|
3033
|
+
writable: true,
|
|
3034
|
+
value: 'bsky.VerificationReceived'
|
|
3035
|
+
});
|
|
3036
|
+
Object.defineProperty(VerificationReceived, "fields", {
|
|
3037
|
+
enumerable: true,
|
|
3038
|
+
configurable: true,
|
|
3039
|
+
writable: true,
|
|
3040
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
3041
|
+
{ no: 1, name: 'actor_did', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
3042
|
+
{ no: 2, name: 'rkey', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
3043
|
+
{
|
|
3044
|
+
no: 3,
|
|
3045
|
+
name: 'subject_did',
|
|
3046
|
+
kind: 'scalar',
|
|
3047
|
+
T: 9 /* ScalarType.STRING */,
|
|
3048
|
+
},
|
|
3049
|
+
{ no: 7, name: 'created_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
3050
|
+
{ no: 8, name: 'indexed_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
3051
|
+
{ no: 9, name: 'sorted_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
3052
|
+
])
|
|
3053
|
+
});
|
|
3054
|
+
/**
|
|
3055
|
+
* @generated from message bsky.GetVerificationsReceivedRequest
|
|
3056
|
+
*/
|
|
3057
|
+
class GetVerificationsReceivedRequest extends protobuf_1.Message {
|
|
3058
|
+
constructor(data) {
|
|
3059
|
+
super();
|
|
3060
|
+
/**
|
|
3061
|
+
* @generated from field: string subject_did = 1;
|
|
3062
|
+
*/
|
|
3063
|
+
Object.defineProperty(this, "subjectDid", {
|
|
3064
|
+
enumerable: true,
|
|
3065
|
+
configurable: true,
|
|
3066
|
+
writable: true,
|
|
3067
|
+
value: ''
|
|
3068
|
+
});
|
|
3069
|
+
/**
|
|
3070
|
+
* @generated from field: int32 limit = 2;
|
|
3071
|
+
*/
|
|
3072
|
+
Object.defineProperty(this, "limit", {
|
|
3073
|
+
enumerable: true,
|
|
3074
|
+
configurable: true,
|
|
3075
|
+
writable: true,
|
|
3076
|
+
value: 0
|
|
3077
|
+
});
|
|
3078
|
+
/**
|
|
3079
|
+
* @generated from field: string cursor = 3;
|
|
3080
|
+
*/
|
|
3081
|
+
Object.defineProperty(this, "cursor", {
|
|
3082
|
+
enumerable: true,
|
|
3083
|
+
configurable: true,
|
|
3084
|
+
writable: true,
|
|
3085
|
+
value: ''
|
|
3086
|
+
});
|
|
3087
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
3088
|
+
}
|
|
3089
|
+
static fromBinary(bytes, options) {
|
|
3090
|
+
return new GetVerificationsReceivedRequest().fromBinary(bytes, options);
|
|
3091
|
+
}
|
|
3092
|
+
static fromJson(jsonValue, options) {
|
|
3093
|
+
return new GetVerificationsReceivedRequest().fromJson(jsonValue, options);
|
|
3094
|
+
}
|
|
3095
|
+
static fromJsonString(jsonString, options) {
|
|
3096
|
+
return new GetVerificationsReceivedRequest().fromJsonString(jsonString, options);
|
|
3097
|
+
}
|
|
3098
|
+
static equals(a, b) {
|
|
3099
|
+
return protobuf_1.proto3.util.equals(GetVerificationsReceivedRequest, a, b);
|
|
3100
|
+
}
|
|
3101
|
+
}
|
|
3102
|
+
exports.GetVerificationsReceivedRequest = GetVerificationsReceivedRequest;
|
|
3103
|
+
Object.defineProperty(GetVerificationsReceivedRequest, "runtime", {
|
|
3104
|
+
enumerable: true,
|
|
3105
|
+
configurable: true,
|
|
3106
|
+
writable: true,
|
|
3107
|
+
value: protobuf_1.proto3
|
|
3108
|
+
});
|
|
3109
|
+
Object.defineProperty(GetVerificationsReceivedRequest, "typeName", {
|
|
3110
|
+
enumerable: true,
|
|
3111
|
+
configurable: true,
|
|
3112
|
+
writable: true,
|
|
3113
|
+
value: 'bsky.GetVerificationsReceivedRequest'
|
|
3114
|
+
});
|
|
3115
|
+
Object.defineProperty(GetVerificationsReceivedRequest, "fields", {
|
|
3116
|
+
enumerable: true,
|
|
3117
|
+
configurable: true,
|
|
3118
|
+
writable: true,
|
|
3119
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
3120
|
+
{
|
|
3121
|
+
no: 1,
|
|
3122
|
+
name: 'subject_did',
|
|
3123
|
+
kind: 'scalar',
|
|
3124
|
+
T: 9 /* ScalarType.STRING */,
|
|
3125
|
+
},
|
|
3126
|
+
{ no: 2, name: 'limit', kind: 'scalar', T: 5 /* ScalarType.INT32 */ },
|
|
3127
|
+
{ no: 3, name: 'cursor', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
3128
|
+
])
|
|
3129
|
+
});
|
|
3130
|
+
/**
|
|
3131
|
+
* @generated from message bsky.GetVerificationsReceivedResponse
|
|
3132
|
+
*/
|
|
3133
|
+
class GetVerificationsReceivedResponse extends protobuf_1.Message {
|
|
3134
|
+
constructor(data) {
|
|
3135
|
+
super();
|
|
3136
|
+
/**
|
|
3137
|
+
* @generated from field: repeated bsky.VerificationReceived verifications = 1;
|
|
3138
|
+
*/
|
|
3139
|
+
Object.defineProperty(this, "verifications", {
|
|
3140
|
+
enumerable: true,
|
|
3141
|
+
configurable: true,
|
|
3142
|
+
writable: true,
|
|
3143
|
+
value: []
|
|
3144
|
+
});
|
|
3145
|
+
/**
|
|
3146
|
+
* @generated from field: string cursor = 2;
|
|
3147
|
+
*/
|
|
3148
|
+
Object.defineProperty(this, "cursor", {
|
|
3149
|
+
enumerable: true,
|
|
3150
|
+
configurable: true,
|
|
3151
|
+
writable: true,
|
|
3152
|
+
value: ''
|
|
3153
|
+
});
|
|
3154
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
3155
|
+
}
|
|
3156
|
+
static fromBinary(bytes, options) {
|
|
3157
|
+
return new GetVerificationsReceivedResponse().fromBinary(bytes, options);
|
|
3158
|
+
}
|
|
3159
|
+
static fromJson(jsonValue, options) {
|
|
3160
|
+
return new GetVerificationsReceivedResponse().fromJson(jsonValue, options);
|
|
3161
|
+
}
|
|
3162
|
+
static fromJsonString(jsonString, options) {
|
|
3163
|
+
return new GetVerificationsReceivedResponse().fromJsonString(jsonString, options);
|
|
3164
|
+
}
|
|
3165
|
+
static equals(a, b) {
|
|
3166
|
+
return protobuf_1.proto3.util.equals(GetVerificationsReceivedResponse, a, b);
|
|
3167
|
+
}
|
|
3168
|
+
}
|
|
3169
|
+
exports.GetVerificationsReceivedResponse = GetVerificationsReceivedResponse;
|
|
3170
|
+
Object.defineProperty(GetVerificationsReceivedResponse, "runtime", {
|
|
3171
|
+
enumerable: true,
|
|
3172
|
+
configurable: true,
|
|
3173
|
+
writable: true,
|
|
3174
|
+
value: protobuf_1.proto3
|
|
3175
|
+
});
|
|
3176
|
+
Object.defineProperty(GetVerificationsReceivedResponse, "typeName", {
|
|
3177
|
+
enumerable: true,
|
|
3178
|
+
configurable: true,
|
|
3179
|
+
writable: true,
|
|
3180
|
+
value: 'bsky.GetVerificationsReceivedResponse'
|
|
3181
|
+
});
|
|
3182
|
+
Object.defineProperty(GetVerificationsReceivedResponse, "fields", {
|
|
3183
|
+
enumerable: true,
|
|
3184
|
+
configurable: true,
|
|
3185
|
+
writable: true,
|
|
3186
|
+
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
3187
|
+
{
|
|
3188
|
+
no: 1,
|
|
3189
|
+
name: 'verifications',
|
|
3190
|
+
kind: 'message',
|
|
3191
|
+
T: VerificationReceived,
|
|
3192
|
+
repeated: true,
|
|
3193
|
+
},
|
|
3194
|
+
{ no: 2, name: 'cursor', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
3195
|
+
])
|
|
3196
|
+
});
|
|
2510
3197
|
/**
|
|
2511
3198
|
* - return like uris where subject uri is subject A
|
|
2512
3199
|
* - `getLikes` list for a post
|
|
@@ -4601,6 +5288,33 @@ class ActorInfo extends protobuf_1.Message {
|
|
|
4601
5288
|
writable: true,
|
|
4602
5289
|
value: false
|
|
4603
5290
|
});
|
|
5291
|
+
/**
|
|
5292
|
+
* @generated from field: double pagerank = 12;
|
|
5293
|
+
*/
|
|
5294
|
+
Object.defineProperty(this, "pagerank", {
|
|
5295
|
+
enumerable: true,
|
|
5296
|
+
configurable: true,
|
|
5297
|
+
writable: true,
|
|
5298
|
+
value: 0
|
|
5299
|
+
});
|
|
5300
|
+
/**
|
|
5301
|
+
* @generated from field: bool trusted_verifier = 13;
|
|
5302
|
+
*/
|
|
5303
|
+
Object.defineProperty(this, "trustedVerifier", {
|
|
5304
|
+
enumerable: true,
|
|
5305
|
+
configurable: true,
|
|
5306
|
+
writable: true,
|
|
5307
|
+
value: false
|
|
5308
|
+
});
|
|
5309
|
+
/**
|
|
5310
|
+
* @generated from field: map<string, bsky.VerificationMeta> verified_by = 14;
|
|
5311
|
+
*/
|
|
5312
|
+
Object.defineProperty(this, "verifiedBy", {
|
|
5313
|
+
enumerable: true,
|
|
5314
|
+
configurable: true,
|
|
5315
|
+
writable: true,
|
|
5316
|
+
value: {}
|
|
5317
|
+
});
|
|
4604
5318
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
4605
5319
|
}
|
|
4606
5320
|
static fromBinary(bytes, options) {
|
|
@@ -4665,6 +5379,20 @@ Object.defineProperty(ActorInfo, "fields", {
|
|
|
4665
5379
|
kind: 'scalar',
|
|
4666
5380
|
T: 8 /* ScalarType.BOOL */,
|
|
4667
5381
|
},
|
|
5382
|
+
{ no: 12, name: 'pagerank', kind: 'scalar', T: 1 /* ScalarType.DOUBLE */ },
|
|
5383
|
+
{
|
|
5384
|
+
no: 13,
|
|
5385
|
+
name: 'trusted_verifier',
|
|
5386
|
+
kind: 'scalar',
|
|
5387
|
+
T: 8 /* ScalarType.BOOL */,
|
|
5388
|
+
},
|
|
5389
|
+
{
|
|
5390
|
+
no: 14,
|
|
5391
|
+
name: 'verified_by',
|
|
5392
|
+
kind: 'map',
|
|
5393
|
+
K: 9 /* ScalarType.STRING */,
|
|
5394
|
+
V: { kind: 'message', T: VerificationMeta },
|
|
5395
|
+
},
|
|
4668
5396
|
])
|
|
4669
5397
|
});
|
|
4670
5398
|
/**
|