@sniipwebmaster/config-service-client-grpcweb-ts 25.2.1945 → 25.3.1968
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.
|
@@ -226,6 +226,9 @@ export class ConfigExtra extends jspb.Message {
|
|
|
226
226
|
getExternalkycavailable(): boolean;
|
|
227
227
|
setExternalkycavailable(value: boolean): ConfigExtra;
|
|
228
228
|
|
|
229
|
+
getGmailconnectionenabled(): boolean;
|
|
230
|
+
setGmailconnectionenabled(value: boolean): ConfigExtra;
|
|
231
|
+
|
|
229
232
|
serializeBinary(): Uint8Array;
|
|
230
233
|
toObject(includeInstance?: boolean): ConfigExtra.AsObject;
|
|
231
234
|
static toObject(includeInstance: boolean, msg: ConfigExtra): ConfigExtra.AsObject;
|
|
@@ -273,6 +276,7 @@ export namespace ConfigExtra {
|
|
|
273
276
|
cybersourcedigitalpaymentsconfig?: CybersourceDigitalPaymentsEnabledConfig.AsObject,
|
|
274
277
|
wexpaymentsallowed: boolean,
|
|
275
278
|
externalkycavailable: boolean,
|
|
279
|
+
gmailconnectionenabled: boolean,
|
|
276
280
|
}
|
|
277
281
|
}
|
|
278
282
|
|
|
@@ -1384,7 +1384,8 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
|
|
|
1384
1384
|
smeaddfailedimportmanuallyenabled: jspb.Message.getBooleanFieldWithDefault(msg, 34, false),
|
|
1385
1385
|
cybersourcedigitalpaymentsconfig: (f = msg.getCybersourcedigitalpaymentsconfig()) && proto.sniipappappconfigapi.CybersourceDigitalPaymentsEnabledConfig.toObject(includeInstance, f),
|
|
1386
1386
|
wexpaymentsallowed: jspb.Message.getBooleanFieldWithDefault(msg, 36, false),
|
|
1387
|
-
externalkycavailable: jspb.Message.getBooleanFieldWithDefault(msg, 37, false)
|
|
1387
|
+
externalkycavailable: jspb.Message.getBooleanFieldWithDefault(msg, 37, false),
|
|
1388
|
+
gmailconnectionenabled: jspb.Message.getBooleanFieldWithDefault(msg, 38, false)
|
|
1388
1389
|
};
|
|
1389
1390
|
|
|
1390
1391
|
if (includeInstance) {
|
|
@@ -1571,6 +1572,10 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
|
|
|
1571
1572
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1572
1573
|
msg.setExternalkycavailable(value);
|
|
1573
1574
|
break;
|
|
1575
|
+
case 38:
|
|
1576
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1577
|
+
msg.setGmailconnectionenabled(value);
|
|
1578
|
+
break;
|
|
1574
1579
|
default:
|
|
1575
1580
|
reader.skipField();
|
|
1576
1581
|
break;
|
|
@@ -1861,6 +1866,13 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
|
|
|
1861
1866
|
f
|
|
1862
1867
|
);
|
|
1863
1868
|
}
|
|
1869
|
+
f = message.getGmailconnectionenabled();
|
|
1870
|
+
if (f) {
|
|
1871
|
+
writer.writeBool(
|
|
1872
|
+
38,
|
|
1873
|
+
f
|
|
1874
|
+
);
|
|
1875
|
+
}
|
|
1864
1876
|
};
|
|
1865
1877
|
|
|
1866
1878
|
|
|
@@ -2606,6 +2618,24 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.setExternalkycavailable = funct
|
|
|
2606
2618
|
};
|
|
2607
2619
|
|
|
2608
2620
|
|
|
2621
|
+
/**
|
|
2622
|
+
* optional bool gmailConnectionEnabled = 38;
|
|
2623
|
+
* @return {boolean}
|
|
2624
|
+
*/
|
|
2625
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getGmailconnectionenabled = function() {
|
|
2626
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 38, false));
|
|
2627
|
+
};
|
|
2628
|
+
|
|
2629
|
+
|
|
2630
|
+
/**
|
|
2631
|
+
* @param {boolean} value
|
|
2632
|
+
* @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
|
|
2633
|
+
*/
|
|
2634
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.setGmailconnectionenabled = function(value) {
|
|
2635
|
+
return jspb.Message.setProto3BooleanField(this, 38, value);
|
|
2636
|
+
};
|
|
2637
|
+
|
|
2638
|
+
|
|
2609
2639
|
|
|
2610
2640
|
|
|
2611
2641
|
|