@sniipwebmaster/config-service-client-grpcweb-ts 25.3.1968 → 25.10.1998

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.
@@ -229,6 +229,21 @@ export class ConfigExtra extends jspb.Message {
229
229
  getGmailconnectionenabled(): boolean;
230
230
  setGmailconnectionenabled(value: boolean): ConfigExtra;
231
231
 
232
+ getAllowwechatglobal(): boolean;
233
+ setAllowwechatglobal(value: boolean): ConfigExtra;
234
+
235
+ getAllowalipayglobal(): boolean;
236
+ setAllowalipayglobal(value: boolean): ConfigExtra;
237
+
238
+ getAllowwechat(): boolean;
239
+ setAllowwechat(value: boolean): ConfigExtra;
240
+
241
+ getAllowalipay(): boolean;
242
+ setAllowalipay(value: boolean): ConfigExtra;
243
+
244
+ getPaytobankaccountsenabled(): boolean;
245
+ setPaytobankaccountsenabled(value: boolean): ConfigExtra;
246
+
232
247
  serializeBinary(): Uint8Array;
233
248
  toObject(includeInstance?: boolean): ConfigExtra.AsObject;
234
249
  static toObject(includeInstance: boolean, msg: ConfigExtra): ConfigExtra.AsObject;
@@ -277,6 +292,11 @@ export namespace ConfigExtra {
277
292
  wexpaymentsallowed: boolean,
278
293
  externalkycavailable: boolean,
279
294
  gmailconnectionenabled: boolean,
295
+ allowwechatglobal: boolean,
296
+ allowalipayglobal: boolean,
297
+ allowwechat: boolean,
298
+ allowalipay: boolean,
299
+ paytobankaccountsenabled: boolean,
280
300
  }
281
301
  }
282
302
 
@@ -1385,7 +1385,12 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
1385
1385
  cybersourcedigitalpaymentsconfig: (f = msg.getCybersourcedigitalpaymentsconfig()) && proto.sniipappappconfigapi.CybersourceDigitalPaymentsEnabledConfig.toObject(includeInstance, f),
1386
1386
  wexpaymentsallowed: jspb.Message.getBooleanFieldWithDefault(msg, 36, false),
1387
1387
  externalkycavailable: jspb.Message.getBooleanFieldWithDefault(msg, 37, false),
1388
- gmailconnectionenabled: jspb.Message.getBooleanFieldWithDefault(msg, 38, false)
1388
+ gmailconnectionenabled: jspb.Message.getBooleanFieldWithDefault(msg, 38, false),
1389
+ allowwechatglobal: jspb.Message.getBooleanFieldWithDefault(msg, 39, false),
1390
+ allowalipayglobal: jspb.Message.getBooleanFieldWithDefault(msg, 40, false),
1391
+ allowwechat: jspb.Message.getBooleanFieldWithDefault(msg, 41, false),
1392
+ allowalipay: jspb.Message.getBooleanFieldWithDefault(msg, 42, false),
1393
+ paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 43, false)
1389
1394
  };
1390
1395
 
1391
1396
  if (includeInstance) {
@@ -1576,6 +1581,26 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
1576
1581
  var value = /** @type {boolean} */ (reader.readBool());
1577
1582
  msg.setGmailconnectionenabled(value);
1578
1583
  break;
1584
+ case 39:
1585
+ var value = /** @type {boolean} */ (reader.readBool());
1586
+ msg.setAllowwechatglobal(value);
1587
+ break;
1588
+ case 40:
1589
+ var value = /** @type {boolean} */ (reader.readBool());
1590
+ msg.setAllowalipayglobal(value);
1591
+ break;
1592
+ case 41:
1593
+ var value = /** @type {boolean} */ (reader.readBool());
1594
+ msg.setAllowwechat(value);
1595
+ break;
1596
+ case 42:
1597
+ var value = /** @type {boolean} */ (reader.readBool());
1598
+ msg.setAllowalipay(value);
1599
+ break;
1600
+ case 43:
1601
+ var value = /** @type {boolean} */ (reader.readBool());
1602
+ msg.setPaytobankaccountsenabled(value);
1603
+ break;
1579
1604
  default:
1580
1605
  reader.skipField();
1581
1606
  break;
@@ -1873,6 +1898,41 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
1873
1898
  f
1874
1899
  );
1875
1900
  }
1901
+ f = message.getAllowwechatglobal();
1902
+ if (f) {
1903
+ writer.writeBool(
1904
+ 39,
1905
+ f
1906
+ );
1907
+ }
1908
+ f = message.getAllowalipayglobal();
1909
+ if (f) {
1910
+ writer.writeBool(
1911
+ 40,
1912
+ f
1913
+ );
1914
+ }
1915
+ f = message.getAllowwechat();
1916
+ if (f) {
1917
+ writer.writeBool(
1918
+ 41,
1919
+ f
1920
+ );
1921
+ }
1922
+ f = message.getAllowalipay();
1923
+ if (f) {
1924
+ writer.writeBool(
1925
+ 42,
1926
+ f
1927
+ );
1928
+ }
1929
+ f = message.getPaytobankaccountsenabled();
1930
+ if (f) {
1931
+ writer.writeBool(
1932
+ 43,
1933
+ f
1934
+ );
1935
+ }
1876
1936
  };
1877
1937
 
1878
1938
 
@@ -2636,6 +2696,96 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.setGmailconnectionenabled = fun
2636
2696
  };
2637
2697
 
2638
2698
 
2699
+ /**
2700
+ * optional bool allowWeChatGlobal = 39;
2701
+ * @return {boolean}
2702
+ */
2703
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowwechatglobal = function() {
2704
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 39, false));
2705
+ };
2706
+
2707
+
2708
+ /**
2709
+ * @param {boolean} value
2710
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2711
+ */
2712
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowwechatglobal = function(value) {
2713
+ return jspb.Message.setProto3BooleanField(this, 39, value);
2714
+ };
2715
+
2716
+
2717
+ /**
2718
+ * optional bool allowAlipayGlobal = 40;
2719
+ * @return {boolean}
2720
+ */
2721
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowalipayglobal = function() {
2722
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 40, false));
2723
+ };
2724
+
2725
+
2726
+ /**
2727
+ * @param {boolean} value
2728
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2729
+ */
2730
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowalipayglobal = function(value) {
2731
+ return jspb.Message.setProto3BooleanField(this, 40, value);
2732
+ };
2733
+
2734
+
2735
+ /**
2736
+ * optional bool allowWeChat = 41;
2737
+ * @return {boolean}
2738
+ */
2739
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowwechat = function() {
2740
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 41, false));
2741
+ };
2742
+
2743
+
2744
+ /**
2745
+ * @param {boolean} value
2746
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2747
+ */
2748
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowwechat = function(value) {
2749
+ return jspb.Message.setProto3BooleanField(this, 41, value);
2750
+ };
2751
+
2752
+
2753
+ /**
2754
+ * optional bool allowAlipay = 42;
2755
+ * @return {boolean}
2756
+ */
2757
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowalipay = function() {
2758
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 42, false));
2759
+ };
2760
+
2761
+
2762
+ /**
2763
+ * @param {boolean} value
2764
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2765
+ */
2766
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowalipay = function(value) {
2767
+ return jspb.Message.setProto3BooleanField(this, 42, value);
2768
+ };
2769
+
2770
+
2771
+ /**
2772
+ * optional bool payToBankAccountsEnabled = 43;
2773
+ * @return {boolean}
2774
+ */
2775
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getPaytobankaccountsenabled = function() {
2776
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 43, false));
2777
+ };
2778
+
2779
+
2780
+ /**
2781
+ * @param {boolean} value
2782
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2783
+ */
2784
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setPaytobankaccountsenabled = function(value) {
2785
+ return jspb.Message.setProto3BooleanField(this, 43, value);
2786
+ };
2787
+
2788
+
2639
2789
 
2640
2790
 
2641
2791
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/config-service-client-grpcweb-ts",
3
- "version": "25.3.1968",
3
+ "version": "25.10.1998",
4
4
  "description": "config-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",