@stashfin/grpc 1.2.700 → 1.2.701
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/package.json
CHANGED
package/ts/eqxcustomer.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { getDashboardMainCardRequest, getDashboardMainCardResponse } from "./eqx
|
|
|
9
9
|
import { getNotificationsRequest, getNotificationsResponse } from "./eqxcustomers/getnotifications";
|
|
10
10
|
import { getStashScoreProfileByIdRequest, getStashScoreProfileByIdResponse } from "./eqxcustomers/getstashscorecustomerprofile";
|
|
11
11
|
import { getTokensRequest, getTokensResponse } from "./eqxcustomers/gettokens";
|
|
12
|
+
import { isCustomerRegisteredRequest, isCustomerRegisteredResponse } from "./eqxcustomers/iscustomerregistered";
|
|
12
13
|
import { sendOtpRequest, sendOtpResponse } from "./eqxcustomers/sendotp";
|
|
13
14
|
import { updateCustomerRequest, updateCustomerResponse } from "./eqxcustomers/updatecustomer";
|
|
14
15
|
import { updateNotificationRequest, updateNotificationResponse } from "./eqxcustomers/updatenotification";
|
|
@@ -172,6 +173,15 @@ export declare const eqxcustomersService: {
|
|
|
172
173
|
readonly responseSerialize: (value: updateSubscriptionStatusResponse) => Buffer;
|
|
173
174
|
readonly responseDeserialize: (value: Buffer) => updateSubscriptionStatusResponse;
|
|
174
175
|
};
|
|
176
|
+
readonly isCustomerRegistered: {
|
|
177
|
+
readonly path: "/service.eqxcustomers/isCustomerRegistered";
|
|
178
|
+
readonly requestStream: false;
|
|
179
|
+
readonly responseStream: false;
|
|
180
|
+
readonly requestSerialize: (value: isCustomerRegisteredRequest) => Buffer;
|
|
181
|
+
readonly requestDeserialize: (value: Buffer) => isCustomerRegisteredRequest;
|
|
182
|
+
readonly responseSerialize: (value: isCustomerRegisteredResponse) => Buffer;
|
|
183
|
+
readonly responseDeserialize: (value: Buffer) => isCustomerRegisteredResponse;
|
|
184
|
+
};
|
|
175
185
|
};
|
|
176
186
|
export interface eqxcustomersServer extends UntypedServiceImplementation {
|
|
177
187
|
sendOtp: handleUnaryCall<sendOtpRequest, sendOtpResponse>;
|
|
@@ -191,6 +201,7 @@ export interface eqxcustomersServer extends UntypedServiceImplementation {
|
|
|
191
201
|
getBankAccountDetails: handleUnaryCall<bankDetailsRequest, bankDetailsResponse>;
|
|
192
202
|
getCreditGuidanceDetails: handleUnaryCall<getCreditGuidanceRequest, getCreditGuidanceResponse>;
|
|
193
203
|
updateSubscriptionStatus: handleUnaryCall<updateSubscriptionStatusRequest, updateSubscriptionStatusResponse>;
|
|
204
|
+
isCustomerRegistered: handleUnaryCall<isCustomerRegisteredRequest, isCustomerRegisteredResponse>;
|
|
194
205
|
}
|
|
195
206
|
export interface eqxcustomersClient extends Client {
|
|
196
207
|
sendOtp(request: sendOtpRequest, callback: (error: ServiceError | null, response: sendOtpResponse) => void): ClientUnaryCall;
|
|
@@ -244,6 +255,9 @@ export interface eqxcustomersClient extends Client {
|
|
|
244
255
|
updateSubscriptionStatus(request: updateSubscriptionStatusRequest, callback: (error: ServiceError | null, response: updateSubscriptionStatusResponse) => void): ClientUnaryCall;
|
|
245
256
|
updateSubscriptionStatus(request: updateSubscriptionStatusRequest, metadata: Metadata, callback: (error: ServiceError | null, response: updateSubscriptionStatusResponse) => void): ClientUnaryCall;
|
|
246
257
|
updateSubscriptionStatus(request: updateSubscriptionStatusRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: updateSubscriptionStatusResponse) => void): ClientUnaryCall;
|
|
258
|
+
isCustomerRegistered(request: isCustomerRegisteredRequest, callback: (error: ServiceError | null, response: isCustomerRegisteredResponse) => void): ClientUnaryCall;
|
|
259
|
+
isCustomerRegistered(request: isCustomerRegisteredRequest, metadata: Metadata, callback: (error: ServiceError | null, response: isCustomerRegisteredResponse) => void): ClientUnaryCall;
|
|
260
|
+
isCustomerRegistered(request: isCustomerRegisteredRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: isCustomerRegisteredResponse) => void): ClientUnaryCall;
|
|
247
261
|
}
|
|
248
262
|
export declare const eqxcustomersClient: {
|
|
249
263
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): eqxcustomersClient;
|
package/ts/eqxcustomer.js
CHANGED
|
@@ -18,6 +18,7 @@ const getdashboardmaincard_1 = require("./eqxcustomers/getdashboardmaincard");
|
|
|
18
18
|
const getnotifications_1 = require("./eqxcustomers/getnotifications");
|
|
19
19
|
const getstashscorecustomerprofile_1 = require("./eqxcustomers/getstashscorecustomerprofile");
|
|
20
20
|
const gettokens_1 = require("./eqxcustomers/gettokens");
|
|
21
|
+
const iscustomerregistered_1 = require("./eqxcustomers/iscustomerregistered");
|
|
21
22
|
const sendotp_1 = require("./eqxcustomers/sendotp");
|
|
22
23
|
const updatecustomer_1 = require("./eqxcustomers/updatecustomer");
|
|
23
24
|
const updatenotification_1 = require("./eqxcustomers/updatenotification");
|
|
@@ -180,5 +181,14 @@ exports.eqxcustomersService = {
|
|
|
180
181
|
responseSerialize: (value) => Buffer.from(updatesubscriptionstatus_1.updateSubscriptionStatusResponse.encode(value).finish()),
|
|
181
182
|
responseDeserialize: (value) => updatesubscriptionstatus_1.updateSubscriptionStatusResponse.decode(value),
|
|
182
183
|
},
|
|
184
|
+
isCustomerRegistered: {
|
|
185
|
+
path: "/service.eqxcustomers/isCustomerRegistered",
|
|
186
|
+
requestStream: false,
|
|
187
|
+
responseStream: false,
|
|
188
|
+
requestSerialize: (value) => Buffer.from(iscustomerregistered_1.isCustomerRegisteredRequest.encode(value).finish()),
|
|
189
|
+
requestDeserialize: (value) => iscustomerregistered_1.isCustomerRegisteredRequest.decode(value),
|
|
190
|
+
responseSerialize: (value) => Buffer.from(iscustomerregistered_1.isCustomerRegisteredResponse.encode(value).finish()),
|
|
191
|
+
responseDeserialize: (value) => iscustomerregistered_1.isCustomerRegisteredResponse.decode(value),
|
|
192
|
+
},
|
|
183
193
|
};
|
|
184
194
|
exports.eqxcustomersClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.eqxcustomersService, "service.eqxcustomers");
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal";
|
|
2
|
+
export declare const protobufPackage = "eqxcustomers.iscustomerregistered";
|
|
3
|
+
export interface isCustomerRegisteredRequest {
|
|
4
|
+
mobile: string;
|
|
5
|
+
}
|
|
6
|
+
export interface Data {
|
|
7
|
+
status: boolean;
|
|
8
|
+
}
|
|
9
|
+
export interface isCustomerRegisteredResponse {
|
|
10
|
+
data: Data | undefined;
|
|
11
|
+
message: string;
|
|
12
|
+
status: string;
|
|
13
|
+
}
|
|
14
|
+
export declare const isCustomerRegisteredRequest: {
|
|
15
|
+
encode(message: isCustomerRegisteredRequest, writer?: _m0.Writer): _m0.Writer;
|
|
16
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): isCustomerRegisteredRequest;
|
|
17
|
+
fromJSON(object: any): isCustomerRegisteredRequest;
|
|
18
|
+
toJSON(message: isCustomerRegisteredRequest): unknown;
|
|
19
|
+
create<I extends Exact<DeepPartial<isCustomerRegisteredRequest>, I>>(base?: I): isCustomerRegisteredRequest;
|
|
20
|
+
fromPartial<I extends Exact<DeepPartial<isCustomerRegisteredRequest>, I>>(object: I): isCustomerRegisteredRequest;
|
|
21
|
+
};
|
|
22
|
+
export declare const Data: {
|
|
23
|
+
encode(message: Data, writer?: _m0.Writer): _m0.Writer;
|
|
24
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Data;
|
|
25
|
+
fromJSON(object: any): Data;
|
|
26
|
+
toJSON(message: Data): unknown;
|
|
27
|
+
create<I extends Exact<DeepPartial<Data>, I>>(base?: I): Data;
|
|
28
|
+
fromPartial<I extends Exact<DeepPartial<Data>, I>>(object: I): Data;
|
|
29
|
+
};
|
|
30
|
+
export declare const isCustomerRegisteredResponse: {
|
|
31
|
+
encode(message: isCustomerRegisteredResponse, writer?: _m0.Writer): _m0.Writer;
|
|
32
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): isCustomerRegisteredResponse;
|
|
33
|
+
fromJSON(object: any): isCustomerRegisteredResponse;
|
|
34
|
+
toJSON(message: isCustomerRegisteredResponse): unknown;
|
|
35
|
+
create<I extends Exact<DeepPartial<isCustomerRegisteredResponse>, I>>(base?: I): isCustomerRegisteredResponse;
|
|
36
|
+
fromPartial<I extends Exact<DeepPartial<isCustomerRegisteredResponse>, I>>(object: I): isCustomerRegisteredResponse;
|
|
37
|
+
};
|
|
38
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
39
|
+
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 {} ? {
|
|
40
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
41
|
+
} : Partial<T>;
|
|
42
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
43
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
44
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
45
|
+
} & {
|
|
46
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
47
|
+
};
|
|
48
|
+
export {};
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
|
+
// versions:
|
|
4
|
+
// protoc-gen-ts_proto v1.181.1
|
|
5
|
+
// protoc v3.20.3
|
|
6
|
+
// source: eqxcustomers/iscustomerregistered.proto
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.isCustomerRegisteredResponse = exports.Data = exports.isCustomerRegisteredRequest = exports.protobufPackage = void 0;
|
|
12
|
+
/* eslint-disable */
|
|
13
|
+
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
14
|
+
exports.protobufPackage = "eqxcustomers.iscustomerregistered";
|
|
15
|
+
function createBaseisCustomerRegisteredRequest() {
|
|
16
|
+
return { mobile: "" };
|
|
17
|
+
}
|
|
18
|
+
exports.isCustomerRegisteredRequest = {
|
|
19
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
20
|
+
if (message.mobile !== "") {
|
|
21
|
+
writer.uint32(10).string(message.mobile);
|
|
22
|
+
}
|
|
23
|
+
return writer;
|
|
24
|
+
},
|
|
25
|
+
decode(input, length) {
|
|
26
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
27
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
28
|
+
const message = createBaseisCustomerRegisteredRequest();
|
|
29
|
+
while (reader.pos < end) {
|
|
30
|
+
const tag = reader.uint32();
|
|
31
|
+
switch (tag >>> 3) {
|
|
32
|
+
case 1:
|
|
33
|
+
if (tag !== 10) {
|
|
34
|
+
break;
|
|
35
|
+
}
|
|
36
|
+
message.mobile = reader.string();
|
|
37
|
+
continue;
|
|
38
|
+
}
|
|
39
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
40
|
+
break;
|
|
41
|
+
}
|
|
42
|
+
reader.skipType(tag & 7);
|
|
43
|
+
}
|
|
44
|
+
return message;
|
|
45
|
+
},
|
|
46
|
+
fromJSON(object) {
|
|
47
|
+
return { mobile: isSet(object.mobile) ? globalThis.String(object.mobile) : "" };
|
|
48
|
+
},
|
|
49
|
+
toJSON(message) {
|
|
50
|
+
const obj = {};
|
|
51
|
+
if (message.mobile !== "") {
|
|
52
|
+
obj.mobile = message.mobile;
|
|
53
|
+
}
|
|
54
|
+
return obj;
|
|
55
|
+
},
|
|
56
|
+
create(base) {
|
|
57
|
+
return exports.isCustomerRegisteredRequest.fromPartial(base ?? {});
|
|
58
|
+
},
|
|
59
|
+
fromPartial(object) {
|
|
60
|
+
const message = createBaseisCustomerRegisteredRequest();
|
|
61
|
+
message.mobile = object.mobile ?? "";
|
|
62
|
+
return message;
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
function createBaseData() {
|
|
66
|
+
return { status: false };
|
|
67
|
+
}
|
|
68
|
+
exports.Data = {
|
|
69
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
70
|
+
if (message.status !== false) {
|
|
71
|
+
writer.uint32(8).bool(message.status);
|
|
72
|
+
}
|
|
73
|
+
return writer;
|
|
74
|
+
},
|
|
75
|
+
decode(input, length) {
|
|
76
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
77
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
78
|
+
const message = createBaseData();
|
|
79
|
+
while (reader.pos < end) {
|
|
80
|
+
const tag = reader.uint32();
|
|
81
|
+
switch (tag >>> 3) {
|
|
82
|
+
case 1:
|
|
83
|
+
if (tag !== 8) {
|
|
84
|
+
break;
|
|
85
|
+
}
|
|
86
|
+
message.status = reader.bool();
|
|
87
|
+
continue;
|
|
88
|
+
}
|
|
89
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
90
|
+
break;
|
|
91
|
+
}
|
|
92
|
+
reader.skipType(tag & 7);
|
|
93
|
+
}
|
|
94
|
+
return message;
|
|
95
|
+
},
|
|
96
|
+
fromJSON(object) {
|
|
97
|
+
return { status: isSet(object.status) ? globalThis.Boolean(object.status) : false };
|
|
98
|
+
},
|
|
99
|
+
toJSON(message) {
|
|
100
|
+
const obj = {};
|
|
101
|
+
if (message.status !== false) {
|
|
102
|
+
obj.status = message.status;
|
|
103
|
+
}
|
|
104
|
+
return obj;
|
|
105
|
+
},
|
|
106
|
+
create(base) {
|
|
107
|
+
return exports.Data.fromPartial(base ?? {});
|
|
108
|
+
},
|
|
109
|
+
fromPartial(object) {
|
|
110
|
+
const message = createBaseData();
|
|
111
|
+
message.status = object.status ?? false;
|
|
112
|
+
return message;
|
|
113
|
+
},
|
|
114
|
+
};
|
|
115
|
+
function createBaseisCustomerRegisteredResponse() {
|
|
116
|
+
return { data: undefined, message: "", status: "" };
|
|
117
|
+
}
|
|
118
|
+
exports.isCustomerRegisteredResponse = {
|
|
119
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
120
|
+
if (message.data !== undefined) {
|
|
121
|
+
exports.Data.encode(message.data, writer.uint32(10).fork()).ldelim();
|
|
122
|
+
}
|
|
123
|
+
if (message.message !== "") {
|
|
124
|
+
writer.uint32(18).string(message.message);
|
|
125
|
+
}
|
|
126
|
+
if (message.status !== "") {
|
|
127
|
+
writer.uint32(26).string(message.status);
|
|
128
|
+
}
|
|
129
|
+
return writer;
|
|
130
|
+
},
|
|
131
|
+
decode(input, length) {
|
|
132
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
133
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
134
|
+
const message = createBaseisCustomerRegisteredResponse();
|
|
135
|
+
while (reader.pos < end) {
|
|
136
|
+
const tag = reader.uint32();
|
|
137
|
+
switch (tag >>> 3) {
|
|
138
|
+
case 1:
|
|
139
|
+
if (tag !== 10) {
|
|
140
|
+
break;
|
|
141
|
+
}
|
|
142
|
+
message.data = exports.Data.decode(reader, reader.uint32());
|
|
143
|
+
continue;
|
|
144
|
+
case 2:
|
|
145
|
+
if (tag !== 18) {
|
|
146
|
+
break;
|
|
147
|
+
}
|
|
148
|
+
message.message = reader.string();
|
|
149
|
+
continue;
|
|
150
|
+
case 3:
|
|
151
|
+
if (tag !== 26) {
|
|
152
|
+
break;
|
|
153
|
+
}
|
|
154
|
+
message.status = reader.string();
|
|
155
|
+
continue;
|
|
156
|
+
}
|
|
157
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
158
|
+
break;
|
|
159
|
+
}
|
|
160
|
+
reader.skipType(tag & 7);
|
|
161
|
+
}
|
|
162
|
+
return message;
|
|
163
|
+
},
|
|
164
|
+
fromJSON(object) {
|
|
165
|
+
return {
|
|
166
|
+
data: isSet(object.data) ? exports.Data.fromJSON(object.data) : undefined,
|
|
167
|
+
message: isSet(object.message) ? globalThis.String(object.message) : "",
|
|
168
|
+
status: isSet(object.status) ? globalThis.String(object.status) : "",
|
|
169
|
+
};
|
|
170
|
+
},
|
|
171
|
+
toJSON(message) {
|
|
172
|
+
const obj = {};
|
|
173
|
+
if (message.data !== undefined) {
|
|
174
|
+
obj.data = exports.Data.toJSON(message.data);
|
|
175
|
+
}
|
|
176
|
+
if (message.message !== "") {
|
|
177
|
+
obj.message = message.message;
|
|
178
|
+
}
|
|
179
|
+
if (message.status !== "") {
|
|
180
|
+
obj.status = message.status;
|
|
181
|
+
}
|
|
182
|
+
return obj;
|
|
183
|
+
},
|
|
184
|
+
create(base) {
|
|
185
|
+
return exports.isCustomerRegisteredResponse.fromPartial(base ?? {});
|
|
186
|
+
},
|
|
187
|
+
fromPartial(object) {
|
|
188
|
+
const message = createBaseisCustomerRegisteredResponse();
|
|
189
|
+
message.data = (object.data !== undefined && object.data !== null) ? exports.Data.fromPartial(object.data) : undefined;
|
|
190
|
+
message.message = object.message ?? "";
|
|
191
|
+
message.status = object.status ?? "";
|
|
192
|
+
return message;
|
|
193
|
+
},
|
|
194
|
+
};
|
|
195
|
+
function isSet(value) {
|
|
196
|
+
return value !== null && value !== undefined;
|
|
197
|
+
}
|
|
@@ -13,7 +13,7 @@ exports.verifyOtpResponse = exports.verifyOtpReqeust = exports.protobufPackage =
|
|
|
13
13
|
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
14
14
|
exports.protobufPackage = "eqxcustomers.verifyotp";
|
|
15
15
|
function createBaseverifyOtpReqeust() {
|
|
16
|
-
return { mobile: "", device_id: "", otp: "", token: "", tnc: false, is_rooted: false };
|
|
16
|
+
return { mobile: "", device_id: "", otp: "", token: "", tnc: false, is_rooted: false, full_name: "" };
|
|
17
17
|
}
|
|
18
18
|
exports.verifyOtpReqeust = {
|
|
19
19
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
@@ -35,6 +35,9 @@ exports.verifyOtpReqeust = {
|
|
|
35
35
|
if (message.is_rooted !== false) {
|
|
36
36
|
writer.uint32(48).bool(message.is_rooted);
|
|
37
37
|
}
|
|
38
|
+
if (message.full_name !== "") {
|
|
39
|
+
writer.uint32(58).string(message.full_name);
|
|
40
|
+
}
|
|
38
41
|
return writer;
|
|
39
42
|
},
|
|
40
43
|
decode(input, length) {
|
|
@@ -80,6 +83,12 @@ exports.verifyOtpReqeust = {
|
|
|
80
83
|
}
|
|
81
84
|
message.is_rooted = reader.bool();
|
|
82
85
|
continue;
|
|
86
|
+
case 7:
|
|
87
|
+
if (tag !== 58) {
|
|
88
|
+
break;
|
|
89
|
+
}
|
|
90
|
+
message.full_name = reader.string();
|
|
91
|
+
continue;
|
|
83
92
|
}
|
|
84
93
|
if ((tag & 7) === 4 || tag === 0) {
|
|
85
94
|
break;
|
|
@@ -96,6 +105,7 @@ exports.verifyOtpReqeust = {
|
|
|
96
105
|
token: isSet(object.token) ? globalThis.String(object.token) : "",
|
|
97
106
|
tnc: isSet(object.tnc) ? globalThis.Boolean(object.tnc) : false,
|
|
98
107
|
is_rooted: isSet(object.is_rooted) ? globalThis.Boolean(object.is_rooted) : false,
|
|
108
|
+
full_name: isSet(object.full_name) ? globalThis.String(object.full_name) : "",
|
|
99
109
|
};
|
|
100
110
|
},
|
|
101
111
|
toJSON(message) {
|
|
@@ -118,6 +128,9 @@ exports.verifyOtpReqeust = {
|
|
|
118
128
|
if (message.is_rooted !== false) {
|
|
119
129
|
obj.is_rooted = message.is_rooted;
|
|
120
130
|
}
|
|
131
|
+
if (message.full_name !== "") {
|
|
132
|
+
obj.full_name = message.full_name;
|
|
133
|
+
}
|
|
121
134
|
return obj;
|
|
122
135
|
},
|
|
123
136
|
create(base) {
|
|
@@ -131,6 +144,7 @@ exports.verifyOtpReqeust = {
|
|
|
131
144
|
message.token = object.token ?? "";
|
|
132
145
|
message.tnc = object.tnc ?? false;
|
|
133
146
|
message.is_rooted = object.is_rooted ?? false;
|
|
147
|
+
message.full_name = object.full_name ?? "";
|
|
134
148
|
return message;
|
|
135
149
|
},
|
|
136
150
|
};
|