theragist-ts 1.0.89 → 1.0.91
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/auth/enum.d.ts +2 -0
- package/dist/auth/enum.js +12 -0
- package/dist/call/message.d.ts +1 -0
- package/dist/call/message.js +17 -1
- package/dist/enums.d.ts +2 -0
- package/dist/enums.js +12 -0
- package/dist/home/message.d.ts +1 -0
- package/dist/home/message.js +17 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +14 -8
- package/dist/post/message.d.ts +2 -0
- package/dist/post/message.js +34 -3
- package/dist/search/message.d.ts +1 -0
- package/dist/search/message.js +17 -1
- package/dist/session/enum.d.ts +14 -0
- package/dist/session/enum.js +95 -1
- package/dist/session/message.d.ts +20 -1
- package/dist/session/message.js +291 -5
- package/dist/user/message.d.ts +4 -0
- package/dist/user/message.js +107 -25
- package/dist/websocket/message.d.ts +3 -0
- package/dist/websocket/message.js +57 -2
- package/package.json +1 -1
package/dist/auth/enum.d.ts
CHANGED
package/dist/auth/enum.js
CHANGED
|
@@ -120,6 +120,8 @@ var KycStatus_Value;
|
|
|
120
120
|
KycStatus_Value[KycStatus_Value["approved"] = 4] = "approved";
|
|
121
121
|
KycStatus_Value[KycStatus_Value["verified"] = 5] = "verified";
|
|
122
122
|
KycStatus_Value[KycStatus_Value["rejected"] = 6] = "rejected";
|
|
123
|
+
KycStatus_Value[KycStatus_Value["submitted"] = 7] = "submitted";
|
|
124
|
+
KycStatus_Value[KycStatus_Value["inReview"] = 8] = "inReview";
|
|
123
125
|
KycStatus_Value[KycStatus_Value["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
124
126
|
})(KycStatus_Value || (exports.KycStatus_Value = KycStatus_Value = {}));
|
|
125
127
|
function kycStatus_ValueFromJSON(object) {
|
|
@@ -145,6 +147,12 @@ function kycStatus_ValueFromJSON(object) {
|
|
|
145
147
|
case 6:
|
|
146
148
|
case "rejected":
|
|
147
149
|
return KycStatus_Value.rejected;
|
|
150
|
+
case 7:
|
|
151
|
+
case "submitted":
|
|
152
|
+
return KycStatus_Value.submitted;
|
|
153
|
+
case 8:
|
|
154
|
+
case "inReview":
|
|
155
|
+
return KycStatus_Value.inReview;
|
|
148
156
|
case -1:
|
|
149
157
|
case "UNRECOGNIZED":
|
|
150
158
|
default:
|
|
@@ -167,6 +175,10 @@ function kycStatus_ValueToJSON(object) {
|
|
|
167
175
|
return "verified";
|
|
168
176
|
case KycStatus_Value.rejected:
|
|
169
177
|
return "rejected";
|
|
178
|
+
case KycStatus_Value.submitted:
|
|
179
|
+
return "submitted";
|
|
180
|
+
case KycStatus_Value.inReview:
|
|
181
|
+
return "inReview";
|
|
170
182
|
case KycStatus_Value.UNRECOGNIZED:
|
|
171
183
|
default:
|
|
172
184
|
return "UNRECOGNIZED";
|
package/dist/call/message.d.ts
CHANGED
package/dist/call/message.js
CHANGED
|
@@ -1485,6 +1485,7 @@ function createBaseCallRoom() {
|
|
|
1485
1485
|
meetingId: "",
|
|
1486
1486
|
participants: [],
|
|
1487
1487
|
expiresAt: "",
|
|
1488
|
+
serverTime: "",
|
|
1488
1489
|
};
|
|
1489
1490
|
}
|
|
1490
1491
|
exports.CallRoom = {
|
|
@@ -1546,6 +1547,9 @@ exports.CallRoom = {
|
|
|
1546
1547
|
if (message.expiresAt !== "") {
|
|
1547
1548
|
writer.uint32(154).string(message.expiresAt);
|
|
1548
1549
|
}
|
|
1550
|
+
if (message.serverTime !== "") {
|
|
1551
|
+
writer.uint32(162).string(message.serverTime);
|
|
1552
|
+
}
|
|
1549
1553
|
return writer;
|
|
1550
1554
|
},
|
|
1551
1555
|
decode(input, length) {
|
|
@@ -1688,6 +1692,13 @@ exports.CallRoom = {
|
|
|
1688
1692
|
message.expiresAt = reader.string();
|
|
1689
1693
|
continue;
|
|
1690
1694
|
}
|
|
1695
|
+
case 20: {
|
|
1696
|
+
if (tag !== 162) {
|
|
1697
|
+
break;
|
|
1698
|
+
}
|
|
1699
|
+
message.serverTime = reader.string();
|
|
1700
|
+
continue;
|
|
1701
|
+
}
|
|
1691
1702
|
}
|
|
1692
1703
|
if ((tag & 7) === 4 || tag === 0) {
|
|
1693
1704
|
break;
|
|
@@ -1719,6 +1730,7 @@ exports.CallRoom = {
|
|
|
1719
1730
|
? object.participants.map((e) => exports.CallParticipant.fromJSON(e))
|
|
1720
1731
|
: [],
|
|
1721
1732
|
expiresAt: isSet(object.expiresAt) ? globalThis.String(object.expiresAt) : "",
|
|
1733
|
+
serverTime: isSet(object.serverTime) ? globalThis.String(object.serverTime) : "",
|
|
1722
1734
|
};
|
|
1723
1735
|
},
|
|
1724
1736
|
toJSON(message) {
|
|
@@ -1781,13 +1793,16 @@ exports.CallRoom = {
|
|
|
1781
1793
|
if (message.expiresAt !== "") {
|
|
1782
1794
|
obj.expiresAt = message.expiresAt;
|
|
1783
1795
|
}
|
|
1796
|
+
if (message.serverTime !== "") {
|
|
1797
|
+
obj.serverTime = message.serverTime;
|
|
1798
|
+
}
|
|
1784
1799
|
return obj;
|
|
1785
1800
|
},
|
|
1786
1801
|
create(base) {
|
|
1787
1802
|
return exports.CallRoom.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
1788
1803
|
},
|
|
1789
1804
|
fromPartial(object) {
|
|
1790
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
|
|
1805
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
|
|
1791
1806
|
const message = createBaseCallRoom();
|
|
1792
1807
|
message.id = (_a = object.id) !== null && _a !== void 0 ? _a : "";
|
|
1793
1808
|
message.roomName = (_b = object.roomName) !== null && _b !== void 0 ? _b : "";
|
|
@@ -1808,6 +1823,7 @@ exports.CallRoom = {
|
|
|
1808
1823
|
message.meetingId = (_s = object.meetingId) !== null && _s !== void 0 ? _s : "";
|
|
1809
1824
|
message.participants = ((_t = object.participants) === null || _t === void 0 ? void 0 : _t.map((e) => exports.CallParticipant.fromPartial(e))) || [];
|
|
1810
1825
|
message.expiresAt = (_u = object.expiresAt) !== null && _u !== void 0 ? _u : "";
|
|
1826
|
+
message.serverTime = (_v = object.serverTime) !== null && _v !== void 0 ? _v : "";
|
|
1811
1827
|
return message;
|
|
1812
1828
|
},
|
|
1813
1829
|
};
|
package/dist/enums.d.ts
CHANGED
|
@@ -173,6 +173,8 @@ export declare enum VerificationStatus_Value {
|
|
|
173
173
|
rejected = 5,
|
|
174
174
|
active = 6,
|
|
175
175
|
suspended = 7,
|
|
176
|
+
submitted = 8,
|
|
177
|
+
inReview = 9,
|
|
176
178
|
UNRECOGNIZED = -1
|
|
177
179
|
}
|
|
178
180
|
export declare function verificationStatus_ValueFromJSON(object: any): VerificationStatus_Value;
|
package/dist/enums.js
CHANGED
|
@@ -705,6 +705,8 @@ var VerificationStatus_Value;
|
|
|
705
705
|
VerificationStatus_Value[VerificationStatus_Value["rejected"] = 5] = "rejected";
|
|
706
706
|
VerificationStatus_Value[VerificationStatus_Value["active"] = 6] = "active";
|
|
707
707
|
VerificationStatus_Value[VerificationStatus_Value["suspended"] = 7] = "suspended";
|
|
708
|
+
VerificationStatus_Value[VerificationStatus_Value["submitted"] = 8] = "submitted";
|
|
709
|
+
VerificationStatus_Value[VerificationStatus_Value["inReview"] = 9] = "inReview";
|
|
708
710
|
VerificationStatus_Value[VerificationStatus_Value["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
709
711
|
})(VerificationStatus_Value || (exports.VerificationStatus_Value = VerificationStatus_Value = {}));
|
|
710
712
|
function verificationStatus_ValueFromJSON(object) {
|
|
@@ -733,6 +735,12 @@ function verificationStatus_ValueFromJSON(object) {
|
|
|
733
735
|
case 7:
|
|
734
736
|
case "suspended":
|
|
735
737
|
return VerificationStatus_Value.suspended;
|
|
738
|
+
case 8:
|
|
739
|
+
case "submitted":
|
|
740
|
+
return VerificationStatus_Value.submitted;
|
|
741
|
+
case 9:
|
|
742
|
+
case "inReview":
|
|
743
|
+
return VerificationStatus_Value.inReview;
|
|
736
744
|
case -1:
|
|
737
745
|
case "UNRECOGNIZED":
|
|
738
746
|
default:
|
|
@@ -757,6 +765,10 @@ function verificationStatus_ValueToJSON(object) {
|
|
|
757
765
|
return "active";
|
|
758
766
|
case VerificationStatus_Value.suspended:
|
|
759
767
|
return "suspended";
|
|
768
|
+
case VerificationStatus_Value.submitted:
|
|
769
|
+
return "submitted";
|
|
770
|
+
case VerificationStatus_Value.inReview:
|
|
771
|
+
return "inReview";
|
|
760
772
|
case VerificationStatus_Value.UNRECOGNIZED:
|
|
761
773
|
default:
|
|
762
774
|
return "UNRECOGNIZED";
|
package/dist/home/message.d.ts
CHANGED
package/dist/home/message.js
CHANGED
|
@@ -805,6 +805,7 @@ function createBaseCommunityPost() {
|
|
|
805
805
|
commentCount: 0,
|
|
806
806
|
createdAt: "",
|
|
807
807
|
authorUsername: "",
|
|
808
|
+
deepLink: "",
|
|
808
809
|
};
|
|
809
810
|
}
|
|
810
811
|
exports.CommunityPost = {
|
|
@@ -845,6 +846,9 @@ exports.CommunityPost = {
|
|
|
845
846
|
if (message.authorUsername !== "") {
|
|
846
847
|
writer.uint32(98).string(message.authorUsername);
|
|
847
848
|
}
|
|
849
|
+
if (message.deepLink !== "") {
|
|
850
|
+
writer.uint32(106).string(message.deepLink);
|
|
851
|
+
}
|
|
848
852
|
return writer;
|
|
849
853
|
},
|
|
850
854
|
decode(input, length) {
|
|
@@ -938,6 +942,13 @@ exports.CommunityPost = {
|
|
|
938
942
|
message.authorUsername = reader.string();
|
|
939
943
|
continue;
|
|
940
944
|
}
|
|
945
|
+
case 13: {
|
|
946
|
+
if (tag !== 106) {
|
|
947
|
+
break;
|
|
948
|
+
}
|
|
949
|
+
message.deepLink = reader.string();
|
|
950
|
+
continue;
|
|
951
|
+
}
|
|
941
952
|
}
|
|
942
953
|
if ((tag & 7) === 4 || tag === 0) {
|
|
943
954
|
break;
|
|
@@ -960,6 +971,7 @@ exports.CommunityPost = {
|
|
|
960
971
|
commentCount: isSet(object.commentCount) ? globalThis.Number(object.commentCount) : 0,
|
|
961
972
|
createdAt: isSet(object.createdAt) ? globalThis.String(object.createdAt) : "",
|
|
962
973
|
authorUsername: isSet(object.authorUsername) ? globalThis.String(object.authorUsername) : "",
|
|
974
|
+
deepLink: isSet(object.deepLink) ? globalThis.String(object.deepLink) : "",
|
|
963
975
|
};
|
|
964
976
|
},
|
|
965
977
|
toJSON(message) {
|
|
@@ -1000,13 +1012,16 @@ exports.CommunityPost = {
|
|
|
1000
1012
|
if (message.authorUsername !== "") {
|
|
1001
1013
|
obj.authorUsername = message.authorUsername;
|
|
1002
1014
|
}
|
|
1015
|
+
if (message.deepLink !== "") {
|
|
1016
|
+
obj.deepLink = message.deepLink;
|
|
1017
|
+
}
|
|
1003
1018
|
return obj;
|
|
1004
1019
|
},
|
|
1005
1020
|
create(base) {
|
|
1006
1021
|
return exports.CommunityPost.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
1007
1022
|
},
|
|
1008
1023
|
fromPartial(object) {
|
|
1009
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
1024
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
1010
1025
|
const message = createBaseCommunityPost();
|
|
1011
1026
|
message.id = (_a = object.id) !== null && _a !== void 0 ? _a : "";
|
|
1012
1027
|
message.communityId = (_b = object.communityId) !== null && _b !== void 0 ? _b : "";
|
|
@@ -1020,6 +1035,7 @@ exports.CommunityPost = {
|
|
|
1020
1035
|
message.commentCount = (_k = object.commentCount) !== null && _k !== void 0 ? _k : 0;
|
|
1021
1036
|
message.createdAt = (_l = object.createdAt) !== null && _l !== void 0 ? _l : "";
|
|
1022
1037
|
message.authorUsername = (_m = object.authorUsername) !== null && _m !== void 0 ? _m : "";
|
|
1038
|
+
message.deepLink = (_o = object.deepLink) !== null && _o !== void 0 ? _o : "";
|
|
1023
1039
|
return message;
|
|
1024
1040
|
},
|
|
1025
1041
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export { CallEvent, ChatTimelineItem, ChatUser, Conversation, DeleteMessageReque
|
|
|
31
31
|
export { CallHistoryItem, CallInvitation, CallParticipant, CallRoom, EndCallRequest, EndCallResponse, GetCallHistoryRequest, GetCallHistoryResponse, GetCallStatusRequest, GetCallStatusResponse, GetCallTokenRequest, GetCallTokenResponse, InitiateCallRequest, InitiateCallResponse, InviteParticipantRequest, InviteParticipantResponse, JoinCallRequest, JoinCallResponse, JoinLiveMeetingByMeetingIdRequest, LeaveCallRequest, LeaveCallResponse, ListActiveCallsRequest, ListActiveCallsResponse, ListPendingInvitationsRequest, ListPendingInvitationsResponse, RespondToInvitationRequest, RespondToInvitationResponse } from './call/message';
|
|
32
32
|
export { CallParticipantRole, CallParticipantRole_Value, CallParticipantStatus, CallParticipantStatus_Value, CallRoomStatus, CallRoomStatus_Value, CallRoomType, CallRoomType_Value, CallType, CallType_Value, ConnectionQuality, ConnectionQuality_Value, callParticipantRole_ValueFromJSON, callParticipantRole_ValueToJSON, callParticipantStatus_ValueFromJSON, callParticipantStatus_ValueToJSON, callRoomStatus_ValueFromJSON, callRoomStatus_ValueToJSON, callRoomType_ValueFromJSON, callRoomType_ValueToJSON, callType_ValueFromJSON, callType_ValueToJSON, connectionQuality_ValueFromJSON, connectionQuality_ValueToJSON } from './call/enum';
|
|
33
33
|
export { CallServiceDefinition } from './call/service';
|
|
34
|
-
export { CancelSessionRequest, CompleteSessionRequest, ConfirmSessionRequest, ConfirmSessionResponse, CreateSessionNoteRequest, CreateSessionNoteResponse, CreateSessionRequest, EndLiveSessionRequest, GetLiveSessionRequest, GetSessionRequest, ListTherapySessionsRequest, ListTherapySessionsResponse, LiveSessionItem, PaymentInput, RateSessionRequest, RateSessionResponse, RescheduleSessionRequest, SessionIntakeDetails, SessionItem, StartLiveSessionRequest, UpdateSessionRequest } from './session/message';
|
|
34
|
+
export { CancelSessionRequest, CompleteSessionRequest, ConfirmSessionRequest, ConfirmSessionResponse, CreateSessionNoteRequest, CreateSessionNoteResponse, CreateSessionRequest, EndLiveSessionRequest, GetLiveSessionRequest, GetSessionRequest, ListTherapySessionsRequest, ListTherapySessionsResponse, LiveSessionItem, PaymentInput, RateSessionRequest, RateSessionResponse, RescheduleSessionRequest, SessionIntakeDetails, SessionItem, SessionParticipant, SessionParticipantInput, StartLiveSessionRequest, UpdateSessionRequest } from './session/message';
|
|
35
35
|
export { CancelSubscriptionRequest, CancelSubscriptionResponse, CreateRecommendationRequest, CreateRecommendationResponse, GetDownloadUrlRequest, GetDownloadUrlResponse, GetPlaybackUrlRequest, GetPlaybackUrlResponse, GetSubscriptionRequest, GetSubscriptionResponse, GetTrackRequest, GetTrackResponse, GiftSubscriptionRequest, GiftSubscriptionResponse, ListCategoriesRequest, ListCategoriesResponse, ListMyRecommendationsRequest, ListMyRecommendationsResponse, ListPlansRequest, ListPlansResponse, ListRecommendationsRequest, ListRecommendationsResponse, ListTracksRequest, ListTracksResponse, RecommendationItem, SoundscapeCategory, SoundscapePaymentInput, SoundscapePlan, SoundscapeTrack, SubscribeRequest, SubscribeResponse, TrackSoundscapeListeningRequest, TrackSoundscapeListeningResponse, UnlockTrackRequest, UnlockTrackResponse } from './soundscape/message';
|
|
36
36
|
export { ChatCallStatus, ChatCallStatus_Value, chatCallStatus_ValueFromJSON, chatCallStatus_ValueToJSON } from './chat/enum';
|
|
37
37
|
export { ChatServiceDefinition } from './chat/service';
|
|
@@ -52,7 +52,7 @@ export { GroupMessageType, GroupMessageType_Value, GroupPrivacy, GroupPrivacy_Va
|
|
|
52
52
|
export { GroupServiceDefinition } from './group/service';
|
|
53
53
|
export { HomeServiceDefinition } from './home/service';
|
|
54
54
|
export { InvitationType, InvitationType_Value, invitationType_ValueFromJSON, invitationType_ValueToJSON } from './community/enum';
|
|
55
|
-
export { LiveSessionStatus, LiveSessionStatus_Value, liveSessionStatus_ValueFromJSON, liveSessionStatus_ValueToJSON } from './session/enum';
|
|
55
|
+
export { LiveSessionStatus, LiveSessionStatus_Value, SessionParticipationType, SessionParticipationType_Value, liveSessionStatus_ValueFromJSON, liveSessionStatus_ValueToJSON, sessionParticipationType_ValueFromJSON, sessionParticipationType_ValueToJSON } from './session/enum';
|
|
56
56
|
export { LookupServiceDefinition } from './lookup/service';
|
|
57
57
|
export { LoungeReferralStatus, LoungeReferralStatus_Value, loungeReferralStatus_ValueFromJSON, loungeReferralStatus_ValueToJSON } from './lounge/enum';
|
|
58
58
|
export { LoungeServiceDefinition } from './lounge/service';
|
package/dist/index.js
CHANGED
|
@@ -36,14 +36,14 @@ exports.BugEnvironment = exports.UInt64Value = exports.UInt32Value = exports.Str
|
|
|
36
36
|
exports.K10AnalyticsOverviewRequest = exports.JournalTimeSeriesResponse = exports.JournalTimeSeriesRequest = exports.JournalTimeSeriesDataPoint = exports.JournalAnalyticsOverviewResponse = exports.JournalAnalyticsOverviewRequest = exports.CallTimeSeriesResponse = exports.CallTimeSeriesRequest = exports.CallTimeSeriesDataPoint = exports.CallQualityMetricsResponse = exports.CallQualityMetricsRequest = exports.CallParticipationResponse = exports.CallParticipationRequest = exports.CallParticipationEntry = exports.CallByTypeResponse = exports.CallByTypeRequest = exports.CallByTypeEntry = exports.CallAnalyticsOverviewResponse = exports.CallAnalyticsOverviewRequest = exports.CalendarServiceDefinition = exports.calendarFilter_ValueToJSON = exports.calendarFilter_ValueFromJSON = exports.calendarEventType_ValueToJSON = exports.calendarEventType_ValueFromJSON = exports.CalendarFilter_Value = exports.CalendarFilter = exports.CalendarEventType_Value = exports.CalendarEventType = exports.UpdateCalendarEventResponse = exports.UpdateCalendarEventRequest = exports.GetCalendarEventsResponse = exports.GetCalendarEventsRequest = exports.DeleteCalendarEventResponse = exports.DeleteCalendarEventRequest = exports.CreateCalendarEventResponse = exports.CreateCalendarEventRequest = exports.CalendarStats = exports.CalendarEvent = exports.BugReportServiceDefinition = exports.bugSeverity_ValueToJSON = exports.bugSeverity_ValueFromJSON = exports.bugReportStatus_ValueToJSON = exports.bugReportStatus_ValueFromJSON = exports.bugEnvironment_ValueToJSON = exports.bugEnvironment_ValueFromJSON = exports.BugSeverity_Value = exports.BugSeverity = exports.BugReportStatus_Value = exports.BugReportStatus = exports.BugEnvironment_Value = void 0;
|
|
37
37
|
exports.ListChatTimelineResponse = exports.ListChatTimelineRequest = exports.DirectMessage = exports.DeleteMessageResponse = exports.DeleteMessageRequest = exports.Conversation = exports.ChatUser = exports.ChatTimelineItem = exports.CallEvent = exports.UserRetentionResponse = exports.UserRetentionRequest = exports.UserRetentionCohort = exports.UserEngagementScoreResponse = exports.UserEngagementScoreRequest = exports.UserEngagementScoreEntry = exports.UserActivityHeatmapResponse = exports.UserActivityHeatmapRequest = exports.UserActivityHeatmapEntry = exports.TopJournalersResponse = exports.TopJournalersRequest = exports.TopJournalersEntry = exports.TherapyEffectivenessResponse = exports.TherapyEffectivenessRequest = exports.TherapyEffectivenessEntry = exports.MoodUserEngagementResponse = exports.MoodUserEngagementRequest = exports.MoodUserEngagementEntry = exports.MoodTrendsResponse = exports.MoodTrendsRequest = exports.MoodTrendDataPoint = exports.MoodSummaryResponse = exports.MoodSummaryRequest = exports.MoodDistributionByRoleResponse = exports.MoodDistributionByRoleRequest = exports.MoodDistributionByRoleEntry = exports.MentalHealthOutcomesResponse = exports.MentalHealthOutcomesRequest = exports.K10UserProgressResponse = exports.K10UserProgressRequest = exports.K10UserProgressEntry = exports.K10TimeSeriesResponse = exports.K10TimeSeriesRequest = exports.K10TimeSeriesDataPoint = exports.K10RiskDistributionResponse = exports.K10RiskDistributionRequest = exports.K10RiskDistributionEntry = exports.K10ByRoleResponse = exports.K10ByRoleRequest = exports.K10ByRoleEntry = exports.K10AnalyticsOverviewResponse = void 0;
|
|
38
38
|
exports.ConnectionQuality = exports.CallType_Value = exports.CallType = exports.CallRoomType_Value = exports.CallRoomType = exports.CallRoomStatus_Value = exports.CallRoomStatus = exports.CallParticipantStatus_Value = exports.CallParticipantStatus = exports.CallParticipantRole_Value = exports.CallParticipantRole = exports.RespondToInvitationResponse = exports.RespondToInvitationRequest = exports.ListPendingInvitationsResponse = exports.ListPendingInvitationsRequest = exports.ListActiveCallsResponse = exports.ListActiveCallsRequest = exports.LeaveCallResponse = exports.LeaveCallRequest = exports.JoinLiveMeetingByMeetingIdRequest = exports.JoinCallResponse = exports.JoinCallRequest = exports.InviteParticipantResponse = exports.InviteParticipantRequest = exports.InitiateCallResponse = exports.InitiateCallRequest = exports.GetCallTokenResponse = exports.GetCallTokenRequest = exports.GetCallStatusResponse = exports.GetCallStatusRequest = exports.GetCallHistoryResponse = exports.GetCallHistoryRequest = exports.EndCallResponse = exports.EndCallRequest = exports.CallRoom = exports.CallParticipant = exports.CallInvitation = exports.CallHistoryItem = exports.SendDirectMessageResponse = exports.SendDirectMessageRequest = exports.MessageReply = exports.MentionedUser = exports.MarkDirectMessagesReadResponse = exports.MarkDirectMessagesReadRequest = exports.ListDirectMessagesResponse = exports.ListDirectMessagesRequest = exports.ListDirectMessageCallEventsResponse = exports.ListDirectMessageCallEventsRequest = exports.ListConversationsResponse = exports.ListConversationsRequest = void 0;
|
|
39
|
-
exports.
|
|
40
|
-
exports.
|
|
41
|
-
exports.
|
|
42
|
-
exports.
|
|
43
|
-
exports.
|
|
44
|
-
exports.
|
|
45
|
-
exports.
|
|
46
|
-
exports.webSocketTarget_ValueToJSON = exports.webSocketTarget_ValueFromJSON = exports.webSocketPresenceStatus_ValueToJSON = exports.webSocketPresenceStatus_ValueFromJSON = exports.webSocketParticipantStatus_ValueToJSON = exports.webSocketParticipantStatus_ValueFromJSON = void 0;
|
|
39
|
+
exports.GiftSubscriptionRequest = exports.GetTrackResponse = exports.GetTrackRequest = exports.GetSubscriptionResponse = exports.GetSubscriptionRequest = exports.GetPlaybackUrlResponse = exports.GetPlaybackUrlRequest = exports.GetDownloadUrlResponse = exports.GetDownloadUrlRequest = exports.CreateRecommendationResponse = exports.CreateRecommendationRequest = exports.CancelSubscriptionResponse = exports.CancelSubscriptionRequest = exports.UpdateSessionRequest = exports.StartLiveSessionRequest = exports.SessionParticipantInput = exports.SessionParticipant = exports.SessionItem = exports.SessionIntakeDetails = exports.RescheduleSessionRequest = exports.RateSessionResponse = exports.RateSessionRequest = exports.PaymentInput = exports.LiveSessionItem = exports.ListTherapySessionsResponse = exports.ListTherapySessionsRequest = exports.GetSessionRequest = exports.GetLiveSessionRequest = exports.EndLiveSessionRequest = exports.CreateSessionRequest = exports.CreateSessionNoteResponse = exports.CreateSessionNoteRequest = exports.ConfirmSessionResponse = exports.ConfirmSessionRequest = exports.CompleteSessionRequest = exports.CancelSessionRequest = exports.CallServiceDefinition = exports.connectionQuality_ValueToJSON = exports.connectionQuality_ValueFromJSON = exports.callType_ValueToJSON = exports.callType_ValueFromJSON = exports.callRoomType_ValueToJSON = exports.callRoomType_ValueFromJSON = exports.callRoomStatus_ValueToJSON = exports.callRoomStatus_ValueFromJSON = exports.callParticipantStatus_ValueToJSON = exports.callParticipantStatus_ValueFromJSON = exports.callParticipantRole_ValueToJSON = exports.callParticipantRole_ValueFromJSON = exports.ConnectionQuality_Value = void 0;
|
|
40
|
+
exports.GetMyTherapistRequest = exports.GetMyClientsResponse = exports.GetMyClientsRequest = exports.GetHomeStatsResponse = exports.GetHomeStatsRequest = exports.GetHomeResponse = exports.GetHomeRequest = exports.CurrentSeason = exports.CommunityPost = exports.ClientItem = exports.ClientHomeSummary = exports.clientTreatmentPlanStatus_ValueToJSON = exports.clientTreatmentPlanStatus_ValueFromJSON = exports.clientGoalStatus_ValueToJSON = exports.clientGoalStatus_ValueFromJSON = exports.clientGender_ValueToJSON = exports.clientGender_ValueFromJSON = exports.ClientTreatmentPlanStatus_Value = exports.ClientTreatmentPlanStatus = exports.ClientGoalStatus_Value = exports.ClientGoalStatus = exports.ClientGender_Value = exports.ClientGender = exports.ChatServiceDefinition = exports.chatCallStatus_ValueToJSON = exports.chatCallStatus_ValueFromJSON = exports.ChatCallStatus_Value = exports.ChatCallStatus = exports.UnlockTrackResponse = exports.UnlockTrackRequest = exports.TrackSoundscapeListeningResponse = exports.TrackSoundscapeListeningRequest = exports.SubscribeResponse = exports.SubscribeRequest = exports.SoundscapeTrack = exports.SoundscapePlan = exports.SoundscapePaymentInput = exports.SoundscapeCategory = exports.RecommendationItem = exports.ListTracksResponse = exports.ListTracksRequest = exports.ListRecommendationsResponse = exports.ListRecommendationsRequest = exports.ListPlansResponse = exports.ListPlansRequest = exports.ListMyRecommendationsResponse = exports.ListMyRecommendationsRequest = exports.ListCategoriesResponse = exports.ListCategoriesRequest = exports.GiftSubscriptionResponse = void 0;
|
|
41
|
+
exports.FieldDescriptorProto = exports.ExtensionRangeOptions = exports.EnumValueOptions = exports.EnumValueDescriptorProto = exports.EnumOptions = exports.EnumDescriptorProto_EnumReservedRange = exports.EnumDescriptorProto = exports.DescriptorProto_ReservedRange = exports.DescriptorProto_ExtensionRange = exports.DescriptorProto = exports.HttpRule = exports.Http = exports.CustomHttpPattern = exports.CrisisServiceDefinition = exports.crisisSupportTicketStatus_ValueToJSON = exports.crisisSupportTicketStatus_ValueFromJSON = exports.crisisChatRequestStatus_ValueToJSON = exports.crisisChatRequestStatus_ValueFromJSON = exports.CrisisSupportTicketStatus_Value = exports.CrisisSupportTicketStatus = exports.CrisisChatRequestStatus_Value = exports.CrisisChatRequestStatus = exports.reportContentType_ValueToJSON = exports.reportContentType_ValueFromJSON = exports.postReactionType_ValueToJSON = exports.postReactionType_ValueFromJSON = exports.contentReportStatus_ValueToJSON = exports.contentReportStatus_ValueFromJSON = exports.ReportContentType_Value = exports.ReportContentType = exports.PostReactionType_Value = exports.PostReactionType = exports.ContentReportStatus_Value = exports.ContentReportStatus = exports.CommunityServiceDefinition = exports.ClientsServiceDefinition = exports.WalletSummary = exports.UserItem = exports.UpcomingSessionItem = exports.TopRatedTherapist = exports.TherapistPerformance = exports.TherapistItem = exports.TherapistHomeSummary = exports.SessionSummary = exports.RecentMood = exports.RecentActivity = exports.PaginationStats = exports.ListUsersResponse = exports.ListUsersRequest = exports.GetMyTherapistResponse = void 0;
|
|
42
|
+
exports.WebSocketAdminAlertUpdatedEvent = exports.UnsubscribeGroupAction = exports.UnsubscribeCommunityAction = exports.TypingDirectAction = exports.TypingAction = exports.SubscribeGroupAction = exports.SubscribeCommunityAction = exports.SendGroupMessageAction = exports.SendDirectMessageAction = exports.RequestCallTypeSwitchResponseAction = exports.RequestCallTypeSwitchAction = exports.PingAction = exports.MarkReadAction = exports.MarkDirectReadAction = exports.GetOnlineUsersAction = exports.methodOptions_IdempotencyLevelToJSON = exports.methodOptions_IdempotencyLevelFromJSON = exports.fileOptions_OptimizeModeToJSON = exports.fileOptions_OptimizeModeFromJSON = exports.fieldOptions_JSTypeToJSON = exports.fieldOptions_JSTypeFromJSON = exports.fieldOptions_CTypeToJSON = exports.fieldOptions_CTypeFromJSON = exports.fieldDescriptorProto_TypeToJSON = exports.fieldDescriptorProto_TypeFromJSON = exports.fieldDescriptorProto_LabelToJSON = exports.fieldDescriptorProto_LabelFromJSON = exports.UninterpretedOption_NamePart = exports.UninterpretedOption = exports.SourceCodeInfo_Location = exports.SourceCodeInfo = exports.ServiceOptions = exports.ServiceDescriptorProto = exports.OneofOptions = exports.OneofDescriptorProto = exports.MethodOptions_IdempotencyLevel = exports.MethodOptions = exports.MethodDescriptorProto = exports.MessageOptions = exports.GeneratedCodeInfo_Annotation = exports.GeneratedCodeInfo = exports.FileOptions_OptimizeMode = exports.FileOptions = exports.FileDescriptorSet = exports.FileDescriptorProto = exports.FieldOptions_JSType = exports.FieldOptions_CType = exports.FieldOptions = exports.FieldDescriptorProto_Type = exports.FieldDescriptorProto_Label = void 0;
|
|
43
|
+
exports.GlobalSearchResponse = exports.GlobalSearchRequest = exports.GlobalSearchPostItem = exports.GlobalSearchGroupItem = exports.GlobalSearchCommunityItem = exports.Notification = exports.MarkNotificationReadResponse = exports.MarkNotificationReadRequest = exports.MarkAllNotificationsReadResponse = exports.MarkAllNotificationsReadRequest = exports.ListNotificationsResponse = exports.ListNotificationsRequest = exports.GetUnreadCountResponse = exports.GetUnreadCountRequest = exports.UpdateSettingsResponse = exports.UpdateSettingsRequest = exports.UpdateSettingItem = exports.SettingItem = exports.GetSettingsResponse = exports.GetSettingsRequest = exports.GetPublicSettingsResponse = exports.GetPublicSettingsRequest = exports.WebSocketTypingEvent = exports.WebSocketTypingDirectEvent = exports.WebSocketSubscriptionEvent = exports.WebSocketServerEvent = exports.WebSocketReadReceiptEvent = exports.WebSocketPresenceUpdateEvent = exports.WebSocketPongEvent = exports.WebSocketOutgoingEvent = exports.WebSocketOnlineUsersEvent = exports.WebSocketNewDirectMessageEvent = exports.WebSocketMissedCallEvent = exports.WebSocketIncomingMessage = exports.WebSocketIncomingCallEvent = exports.WebSocketGroupMessageEvent = exports.WebSocketGroupLifecycleEvent = exports.WebSocketErrorEvent = exports.WebSocketDirectMessagesReadEvent = exports.WebSocketDirectMessageEvent = exports.WebSocketConnectedEvent = exports.WebSocketCommunityActivityEvent = exports.WebSocketClientEvent = exports.WebSocketCallTypeSwitchEvent = exports.WebSocketCallTimerWarningEvent = exports.WebSocketCallParticipantEvent = exports.WebSocketCallInvitationRespondedEvent = exports.WebSocketCallInvitationResolvedEvent = exports.WebSocketCallInvitationExpiredEvent = exports.WebSocketCallEndedEvent = void 0;
|
|
44
|
+
exports.notificationType_ValueFromJSON = exports.notificationChannel_ValueToJSON = exports.notificationChannel_ValueFromJSON = exports.NotificationType_Value = exports.NotificationType = exports.NotificationChannel_Value = exports.NotificationChannel = exports.LoungeServiceDefinition = exports.loungeReferralStatus_ValueToJSON = exports.loungeReferralStatus_ValueFromJSON = exports.LoungeReferralStatus_Value = exports.LoungeReferralStatus = exports.LookupServiceDefinition = exports.sessionParticipationType_ValueToJSON = exports.sessionParticipationType_ValueFromJSON = exports.liveSessionStatus_ValueToJSON = exports.liveSessionStatus_ValueFromJSON = exports.SessionParticipationType_Value = exports.SessionParticipationType = exports.LiveSessionStatus_Value = exports.LiveSessionStatus = exports.invitationType_ValueToJSON = exports.invitationType_ValueFromJSON = exports.InvitationType_Value = exports.InvitationType = exports.HomeServiceDefinition = exports.GroupServiceDefinition = exports.groupPrivacy_ValueToJSON = exports.groupPrivacy_ValueFromJSON = exports.groupMessageType_ValueToJSON = exports.groupMessageType_ValueFromJSON = exports.GroupPrivacy_Value = exports.GroupPrivacy = exports.GroupMessageType_Value = exports.GroupMessageType = exports.SearchUsersResponse = exports.SearchTherapistsResponse = exports.SearchSuggestionsResponse = exports.SearchSuggestionRequest = exports.SearchSuggestionItem = exports.SearchResourcesResponse = exports.SearchResourcesRequest = exports.SearchResourceItem = exports.SearchRequest = exports.SearchPostsResponse = exports.SearchHealthResponse = exports.SearchGroupsResponse = exports.SearchCommunitiesResponse = exports.GlobalSearchUserItem = exports.GlobalSearchTherapistItem = void 0;
|
|
45
|
+
exports.webSocketAction_ValueToJSON = exports.webSocketAction_ValueFromJSON = exports.WebSocketTarget_Value = exports.WebSocketTarget = exports.WebSocketPresenceStatus_Value = exports.WebSocketPresenceStatus = exports.WebSocketParticipantStatus_Value = exports.WebSocketParticipantStatus = exports.WebSocketInvitationStatus_Value = exports.WebSocketInvitationStatus = exports.WebSocketEventType_Value = exports.WebSocketEventType = exports.WebSocketAdminAlertStatus_Value = exports.WebSocketAdminAlertStatus = exports.WebSocketAction_Value = exports.WebSocketAction = exports.WalletServiceDefinition = exports.UserServiceDefinition = exports.TherapistServiceDefinition = exports.SubmitBugReportResponse = exports.SubmitBugReportRequest = exports.soundscapeSubscriptionStatus_ValueToJSON = exports.soundscapeSubscriptionStatus_ValueFromJSON = exports.SoundscapeSubscriptionStatus_Value = exports.SoundscapeSubscriptionStatus = exports.SoundscapeServiceDefinition = exports.SettingsServiceDefinition = exports.SessionServiceDefinition = exports.searchSuggestionCategory_ValueToJSON = exports.searchSuggestionCategory_ValueFromJSON = exports.searchSource_ValueToJSON = exports.searchSource_ValueFromJSON = exports.SearchSuggestionCategory_Value = exports.SearchSuggestionCategory = exports.SearchSource_Value = exports.SearchSource = exports.SearchServiceDefinition = exports.SearchHealthRequest = exports.recentActivityType_ValueToJSON = exports.recentActivityType_ValueFromJSON = exports.RecentActivityType_Value = exports.RecentActivityType = exports.PostServiceDefinition = exports.OrganizationServiceDefinition = exports.organizationFundingSource_ValueToJSON = exports.organizationFundingSource_ValueFromJSON = exports.OrganizationFundingSource_Value = exports.OrganizationFundingSource = exports.NotificationServiceDefinition = exports.notificationType_ValueToJSON = void 0;
|
|
46
|
+
exports.webSocketTarget_ValueToJSON = exports.webSocketTarget_ValueFromJSON = exports.webSocketPresenceStatus_ValueToJSON = exports.webSocketPresenceStatus_ValueFromJSON = exports.webSocketParticipantStatus_ValueToJSON = exports.webSocketParticipantStatus_ValueFromJSON = exports.webSocketInvitationStatus_ValueToJSON = exports.webSocketInvitationStatus_ValueFromJSON = exports.webSocketEventType_ValueToJSON = exports.webSocketEventType_ValueFromJSON = exports.webSocketAdminAlertStatus_ValueToJSON = exports.webSocketAdminAlertStatus_ValueFromJSON = void 0;
|
|
47
47
|
var message_1 = require("./lounge/message");
|
|
48
48
|
Object.defineProperty(exports, "AcceptConsultationResponseRequest", { enumerable: true, get: function () { return message_1.AcceptConsultationResponseRequest; } });
|
|
49
49
|
Object.defineProperty(exports, "AcceptConsultationResponseResponse", { enumerable: true, get: function () { return message_1.AcceptConsultationResponseResponse; } });
|
|
@@ -1911,6 +1911,8 @@ Object.defineProperty(exports, "RateSessionResponse", { enumerable: true, get: f
|
|
|
1911
1911
|
Object.defineProperty(exports, "RescheduleSessionRequest", { enumerable: true, get: function () { return message_17.RescheduleSessionRequest; } });
|
|
1912
1912
|
Object.defineProperty(exports, "SessionIntakeDetails", { enumerable: true, get: function () { return message_17.SessionIntakeDetails; } });
|
|
1913
1913
|
Object.defineProperty(exports, "SessionItem", { enumerable: true, get: function () { return message_17.SessionItem; } });
|
|
1914
|
+
Object.defineProperty(exports, "SessionParticipant", { enumerable: true, get: function () { return message_17.SessionParticipant; } });
|
|
1915
|
+
Object.defineProperty(exports, "SessionParticipantInput", { enumerable: true, get: function () { return message_17.SessionParticipantInput; } });
|
|
1914
1916
|
Object.defineProperty(exports, "StartLiveSessionRequest", { enumerable: true, get: function () { return message_17.StartLiveSessionRequest; } });
|
|
1915
1917
|
Object.defineProperty(exports, "UpdateSessionRequest", { enumerable: true, get: function () { return message_17.UpdateSessionRequest; } });
|
|
1916
1918
|
var message_18 = require("./soundscape/message");
|
|
@@ -2178,8 +2180,12 @@ Object.defineProperty(exports, "invitationType_ValueToJSON", { enumerable: true,
|
|
|
2178
2180
|
var enum_13 = require("./session/enum");
|
|
2179
2181
|
Object.defineProperty(exports, "LiveSessionStatus", { enumerable: true, get: function () { return enum_13.LiveSessionStatus; } });
|
|
2180
2182
|
Object.defineProperty(exports, "LiveSessionStatus_Value", { enumerable: true, get: function () { return enum_13.LiveSessionStatus_Value; } });
|
|
2183
|
+
Object.defineProperty(exports, "SessionParticipationType", { enumerable: true, get: function () { return enum_13.SessionParticipationType; } });
|
|
2184
|
+
Object.defineProperty(exports, "SessionParticipationType_Value", { enumerable: true, get: function () { return enum_13.SessionParticipationType_Value; } });
|
|
2181
2185
|
Object.defineProperty(exports, "liveSessionStatus_ValueFromJSON", { enumerable: true, get: function () { return enum_13.liveSessionStatus_ValueFromJSON; } });
|
|
2182
2186
|
Object.defineProperty(exports, "liveSessionStatus_ValueToJSON", { enumerable: true, get: function () { return enum_13.liveSessionStatus_ValueToJSON; } });
|
|
2187
|
+
Object.defineProperty(exports, "sessionParticipationType_ValueFromJSON", { enumerable: true, get: function () { return enum_13.sessionParticipationType_ValueFromJSON; } });
|
|
2188
|
+
Object.defineProperty(exports, "sessionParticipationType_ValueToJSON", { enumerable: true, get: function () { return enum_13.sessionParticipationType_ValueToJSON; } });
|
|
2183
2189
|
var service_12 = require("./lookup/service");
|
|
2184
2190
|
Object.defineProperty(exports, "LookupServiceDefinition", { enumerable: true, get: function () { return service_12.LookupServiceDefinition; } });
|
|
2185
2191
|
var enum_14 = require("./lounge/enum");
|
package/dist/post/message.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export interface Post {
|
|
|
41
41
|
reactionCounts: ReactionCounts | undefined;
|
|
42
42
|
myReactions: PostReactionType_Value[];
|
|
43
43
|
myReactionState: MyReactionState | undefined;
|
|
44
|
+
deepLink: string;
|
|
44
45
|
}
|
|
45
46
|
export interface MentionedUser {
|
|
46
47
|
userId: string;
|
|
@@ -155,6 +156,7 @@ export interface SharePostRequest {
|
|
|
155
156
|
export interface SharePostResponse {
|
|
156
157
|
postId: string;
|
|
157
158
|
shareCount: number;
|
|
159
|
+
deepLink: string;
|
|
158
160
|
}
|
|
159
161
|
export interface ListCommentsRequest {
|
|
160
162
|
postId: string;
|
package/dist/post/message.js
CHANGED
|
@@ -331,6 +331,7 @@ function createBasePost() {
|
|
|
331
331
|
reactionCounts: undefined,
|
|
332
332
|
myReactions: [],
|
|
333
333
|
myReactionState: undefined,
|
|
334
|
+
deepLink: "",
|
|
334
335
|
};
|
|
335
336
|
}
|
|
336
337
|
exports.Post = {
|
|
@@ -397,6 +398,9 @@ exports.Post = {
|
|
|
397
398
|
if (message.myReactionState !== undefined) {
|
|
398
399
|
exports.MyReactionState.encode(message.myReactionState, writer.uint32(162).fork()).join();
|
|
399
400
|
}
|
|
401
|
+
if (message.deepLink !== "") {
|
|
402
|
+
writer.uint32(170).string(message.deepLink);
|
|
403
|
+
}
|
|
400
404
|
return writer;
|
|
401
405
|
},
|
|
402
406
|
decode(input, length) {
|
|
@@ -553,6 +557,13 @@ exports.Post = {
|
|
|
553
557
|
message.myReactionState = exports.MyReactionState.decode(reader, reader.uint32());
|
|
554
558
|
continue;
|
|
555
559
|
}
|
|
560
|
+
case 21: {
|
|
561
|
+
if (tag !== 170) {
|
|
562
|
+
break;
|
|
563
|
+
}
|
|
564
|
+
message.deepLink = reader.string();
|
|
565
|
+
continue;
|
|
566
|
+
}
|
|
556
567
|
}
|
|
557
568
|
if ((tag & 7) === 4 || tag === 0) {
|
|
558
569
|
break;
|
|
@@ -587,6 +598,7 @@ exports.Post = {
|
|
|
587
598
|
? object.myReactions.map((e) => (0, enum_1.postReactionType_ValueFromJSON)(e))
|
|
588
599
|
: [],
|
|
589
600
|
myReactionState: isSet(object.myReactionState) ? exports.MyReactionState.fromJSON(object.myReactionState) : undefined,
|
|
601
|
+
deepLink: isSet(object.deepLink) ? globalThis.String(object.deepLink) : "",
|
|
590
602
|
};
|
|
591
603
|
},
|
|
592
604
|
toJSON(message) {
|
|
@@ -652,13 +664,16 @@ exports.Post = {
|
|
|
652
664
|
if (message.myReactionState !== undefined) {
|
|
653
665
|
obj.myReactionState = exports.MyReactionState.toJSON(message.myReactionState);
|
|
654
666
|
}
|
|
667
|
+
if (message.deepLink !== "") {
|
|
668
|
+
obj.deepLink = message.deepLink;
|
|
669
|
+
}
|
|
655
670
|
return obj;
|
|
656
671
|
},
|
|
657
672
|
create(base) {
|
|
658
673
|
return exports.Post.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
659
674
|
},
|
|
660
675
|
fromPartial(object) {
|
|
661
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
676
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
|
|
662
677
|
const message = createBasePost();
|
|
663
678
|
message.id = (_a = object.id) !== null && _a !== void 0 ? _a : "";
|
|
664
679
|
message.communityId = (_b = object.communityId) !== null && _b !== void 0 ? _b : "";
|
|
@@ -686,6 +701,7 @@ exports.Post = {
|
|
|
686
701
|
message.myReactionState = (object.myReactionState !== undefined && object.myReactionState !== null)
|
|
687
702
|
? exports.MyReactionState.fromPartial(object.myReactionState)
|
|
688
703
|
: undefined;
|
|
704
|
+
message.deepLink = (_t = object.deepLink) !== null && _t !== void 0 ? _t : "";
|
|
689
705
|
return message;
|
|
690
706
|
},
|
|
691
707
|
};
|
|
@@ -2582,7 +2598,7 @@ exports.SharePostRequest = {
|
|
|
2582
2598
|
},
|
|
2583
2599
|
};
|
|
2584
2600
|
function createBaseSharePostResponse() {
|
|
2585
|
-
return { postId: "", shareCount: 0 };
|
|
2601
|
+
return { postId: "", shareCount: 0, deepLink: "" };
|
|
2586
2602
|
}
|
|
2587
2603
|
exports.SharePostResponse = {
|
|
2588
2604
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
@@ -2592,6 +2608,9 @@ exports.SharePostResponse = {
|
|
|
2592
2608
|
if (message.shareCount !== 0) {
|
|
2593
2609
|
writer.uint32(16).int32(message.shareCount);
|
|
2594
2610
|
}
|
|
2611
|
+
if (message.deepLink !== "") {
|
|
2612
|
+
writer.uint32(26).string(message.deepLink);
|
|
2613
|
+
}
|
|
2595
2614
|
return writer;
|
|
2596
2615
|
},
|
|
2597
2616
|
decode(input, length) {
|
|
@@ -2615,6 +2634,13 @@ exports.SharePostResponse = {
|
|
|
2615
2634
|
message.shareCount = reader.int32();
|
|
2616
2635
|
continue;
|
|
2617
2636
|
}
|
|
2637
|
+
case 3: {
|
|
2638
|
+
if (tag !== 26) {
|
|
2639
|
+
break;
|
|
2640
|
+
}
|
|
2641
|
+
message.deepLink = reader.string();
|
|
2642
|
+
continue;
|
|
2643
|
+
}
|
|
2618
2644
|
}
|
|
2619
2645
|
if ((tag & 7) === 4 || tag === 0) {
|
|
2620
2646
|
break;
|
|
@@ -2627,6 +2653,7 @@ exports.SharePostResponse = {
|
|
|
2627
2653
|
return {
|
|
2628
2654
|
postId: isSet(object.postId) ? globalThis.String(object.postId) : "",
|
|
2629
2655
|
shareCount: isSet(object.shareCount) ? globalThis.Number(object.shareCount) : 0,
|
|
2656
|
+
deepLink: isSet(object.deepLink) ? globalThis.String(object.deepLink) : "",
|
|
2630
2657
|
};
|
|
2631
2658
|
},
|
|
2632
2659
|
toJSON(message) {
|
|
@@ -2637,16 +2664,20 @@ exports.SharePostResponse = {
|
|
|
2637
2664
|
if (message.shareCount !== 0) {
|
|
2638
2665
|
obj.shareCount = Math.round(message.shareCount);
|
|
2639
2666
|
}
|
|
2667
|
+
if (message.deepLink !== "") {
|
|
2668
|
+
obj.deepLink = message.deepLink;
|
|
2669
|
+
}
|
|
2640
2670
|
return obj;
|
|
2641
2671
|
},
|
|
2642
2672
|
create(base) {
|
|
2643
2673
|
return exports.SharePostResponse.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
2644
2674
|
},
|
|
2645
2675
|
fromPartial(object) {
|
|
2646
|
-
var _a, _b;
|
|
2676
|
+
var _a, _b, _c;
|
|
2647
2677
|
const message = createBaseSharePostResponse();
|
|
2648
2678
|
message.postId = (_a = object.postId) !== null && _a !== void 0 ? _a : "";
|
|
2649
2679
|
message.shareCount = (_b = object.shareCount) !== null && _b !== void 0 ? _b : 0;
|
|
2680
|
+
message.deepLink = (_c = object.deepLink) !== null && _c !== void 0 ? _c : "";
|
|
2650
2681
|
return message;
|
|
2651
2682
|
},
|
|
2652
2683
|
};
|
package/dist/search/message.d.ts
CHANGED
package/dist/search/message.js
CHANGED
|
@@ -820,6 +820,7 @@ function createBaseGlobalSearchPostItem() {
|
|
|
820
820
|
commentCount: 0,
|
|
821
821
|
createdAt: "",
|
|
822
822
|
authorUsername: "",
|
|
823
|
+
deepLink: "",
|
|
823
824
|
};
|
|
824
825
|
}
|
|
825
826
|
exports.GlobalSearchPostItem = {
|
|
@@ -851,6 +852,9 @@ exports.GlobalSearchPostItem = {
|
|
|
851
852
|
if (message.authorUsername !== "") {
|
|
852
853
|
writer.uint32(74).string(message.authorUsername);
|
|
853
854
|
}
|
|
855
|
+
if (message.deepLink !== "") {
|
|
856
|
+
writer.uint32(82).string(message.deepLink);
|
|
857
|
+
}
|
|
854
858
|
return writer;
|
|
855
859
|
},
|
|
856
860
|
decode(input, length) {
|
|
@@ -923,6 +927,13 @@ exports.GlobalSearchPostItem = {
|
|
|
923
927
|
message.authorUsername = reader.string();
|
|
924
928
|
continue;
|
|
925
929
|
}
|
|
930
|
+
case 10: {
|
|
931
|
+
if (tag !== 82) {
|
|
932
|
+
break;
|
|
933
|
+
}
|
|
934
|
+
message.deepLink = reader.string();
|
|
935
|
+
continue;
|
|
936
|
+
}
|
|
926
937
|
}
|
|
927
938
|
if ((tag & 7) === 4 || tag === 0) {
|
|
928
939
|
break;
|
|
@@ -942,6 +953,7 @@ exports.GlobalSearchPostItem = {
|
|
|
942
953
|
commentCount: isSet(object.commentCount) ? globalThis.Number(object.commentCount) : 0,
|
|
943
954
|
createdAt: isSet(object.createdAt) ? globalThis.String(object.createdAt) : "",
|
|
944
955
|
authorUsername: isSet(object.authorUsername) ? globalThis.String(object.authorUsername) : "",
|
|
956
|
+
deepLink: isSet(object.deepLink) ? globalThis.String(object.deepLink) : "",
|
|
945
957
|
};
|
|
946
958
|
},
|
|
947
959
|
toJSON(message) {
|
|
@@ -973,13 +985,16 @@ exports.GlobalSearchPostItem = {
|
|
|
973
985
|
if (message.authorUsername !== "") {
|
|
974
986
|
obj.authorUsername = message.authorUsername;
|
|
975
987
|
}
|
|
988
|
+
if (message.deepLink !== "") {
|
|
989
|
+
obj.deepLink = message.deepLink;
|
|
990
|
+
}
|
|
976
991
|
return obj;
|
|
977
992
|
},
|
|
978
993
|
create(base) {
|
|
979
994
|
return exports.GlobalSearchPostItem.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
980
995
|
},
|
|
981
996
|
fromPartial(object) {
|
|
982
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
997
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
983
998
|
const message = createBaseGlobalSearchPostItem();
|
|
984
999
|
message.id = (_a = object.id) !== null && _a !== void 0 ? _a : "";
|
|
985
1000
|
message.content = (_b = object.content) !== null && _b !== void 0 ? _b : "";
|
|
@@ -990,6 +1005,7 @@ exports.GlobalSearchPostItem = {
|
|
|
990
1005
|
message.commentCount = (_g = object.commentCount) !== null && _g !== void 0 ? _g : 0;
|
|
991
1006
|
message.createdAt = (_h = object.createdAt) !== null && _h !== void 0 ? _h : "";
|
|
992
1007
|
message.authorUsername = (_j = object.authorUsername) !== null && _j !== void 0 ? _j : "";
|
|
1008
|
+
message.deepLink = (_k = object.deepLink) !== null && _k !== void 0 ? _k : "";
|
|
993
1009
|
return message;
|
|
994
1010
|
},
|
|
995
1011
|
};
|
package/dist/session/enum.d.ts
CHANGED
|
@@ -10,7 +10,21 @@ export declare enum LiveSessionStatus_Value {
|
|
|
10
10
|
}
|
|
11
11
|
export declare function liveSessionStatus_ValueFromJSON(object: any): LiveSessionStatus_Value;
|
|
12
12
|
export declare function liveSessionStatus_ValueToJSON(object: LiveSessionStatus_Value): string;
|
|
13
|
+
export interface SessionParticipationType {
|
|
14
|
+
}
|
|
15
|
+
export declare enum SessionParticipationType_Value {
|
|
16
|
+
unknown = 0,
|
|
17
|
+
individual = 1,
|
|
18
|
+
couples = 2,
|
|
19
|
+
family = 3,
|
|
20
|
+
group = 4,
|
|
21
|
+
parentChild = 5,
|
|
22
|
+
UNRECOGNIZED = -1
|
|
23
|
+
}
|
|
24
|
+
export declare function sessionParticipationType_ValueFromJSON(object: any): SessionParticipationType_Value;
|
|
25
|
+
export declare function sessionParticipationType_ValueToJSON(object: SessionParticipationType_Value): string;
|
|
13
26
|
export declare const LiveSessionStatus: MessageFns<LiveSessionStatus>;
|
|
27
|
+
export declare const SessionParticipationType: MessageFns<SessionParticipationType>;
|
|
14
28
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
15
29
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
16
30
|
[K in keyof T]?: DeepPartial<T[K]>;
|