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

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,18 @@ 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
+
232
244
  serializeBinary(): Uint8Array;
233
245
  toObject(includeInstance?: boolean): ConfigExtra.AsObject;
234
246
  static toObject(includeInstance: boolean, msg: ConfigExtra): ConfigExtra.AsObject;
@@ -277,6 +289,10 @@ export namespace ConfigExtra {
277
289
  wexpaymentsallowed: boolean,
278
290
  externalkycavailable: boolean,
279
291
  gmailconnectionenabled: boolean,
292
+ allowwechatglobal: boolean,
293
+ allowalipayglobal: boolean,
294
+ allowwechat: boolean,
295
+ allowalipay: boolean,
280
296
  }
281
297
  }
282
298
 
@@ -1385,7 +1385,11 @@ 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)
1389
1393
  };
1390
1394
 
1391
1395
  if (includeInstance) {
@@ -1576,6 +1580,22 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
1576
1580
  var value = /** @type {boolean} */ (reader.readBool());
1577
1581
  msg.setGmailconnectionenabled(value);
1578
1582
  break;
1583
+ case 39:
1584
+ var value = /** @type {boolean} */ (reader.readBool());
1585
+ msg.setAllowwechatglobal(value);
1586
+ break;
1587
+ case 40:
1588
+ var value = /** @type {boolean} */ (reader.readBool());
1589
+ msg.setAllowalipayglobal(value);
1590
+ break;
1591
+ case 41:
1592
+ var value = /** @type {boolean} */ (reader.readBool());
1593
+ msg.setAllowwechat(value);
1594
+ break;
1595
+ case 42:
1596
+ var value = /** @type {boolean} */ (reader.readBool());
1597
+ msg.setAllowalipay(value);
1598
+ break;
1579
1599
  default:
1580
1600
  reader.skipField();
1581
1601
  break;
@@ -1873,6 +1893,34 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
1873
1893
  f
1874
1894
  );
1875
1895
  }
1896
+ f = message.getAllowwechatglobal();
1897
+ if (f) {
1898
+ writer.writeBool(
1899
+ 39,
1900
+ f
1901
+ );
1902
+ }
1903
+ f = message.getAllowalipayglobal();
1904
+ if (f) {
1905
+ writer.writeBool(
1906
+ 40,
1907
+ f
1908
+ );
1909
+ }
1910
+ f = message.getAllowwechat();
1911
+ if (f) {
1912
+ writer.writeBool(
1913
+ 41,
1914
+ f
1915
+ );
1916
+ }
1917
+ f = message.getAllowalipay();
1918
+ if (f) {
1919
+ writer.writeBool(
1920
+ 42,
1921
+ f
1922
+ );
1923
+ }
1876
1924
  };
1877
1925
 
1878
1926
 
@@ -2636,6 +2684,78 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.setGmailconnectionenabled = fun
2636
2684
  };
2637
2685
 
2638
2686
 
2687
+ /**
2688
+ * optional bool allowWeChatGlobal = 39;
2689
+ * @return {boolean}
2690
+ */
2691
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowwechatglobal = function() {
2692
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 39, false));
2693
+ };
2694
+
2695
+
2696
+ /**
2697
+ * @param {boolean} value
2698
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2699
+ */
2700
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowwechatglobal = function(value) {
2701
+ return jspb.Message.setProto3BooleanField(this, 39, value);
2702
+ };
2703
+
2704
+
2705
+ /**
2706
+ * optional bool allowAlipayGlobal = 40;
2707
+ * @return {boolean}
2708
+ */
2709
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowalipayglobal = function() {
2710
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 40, false));
2711
+ };
2712
+
2713
+
2714
+ /**
2715
+ * @param {boolean} value
2716
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2717
+ */
2718
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowalipayglobal = function(value) {
2719
+ return jspb.Message.setProto3BooleanField(this, 40, value);
2720
+ };
2721
+
2722
+
2723
+ /**
2724
+ * optional bool allowWeChat = 41;
2725
+ * @return {boolean}
2726
+ */
2727
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowwechat = function() {
2728
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 41, false));
2729
+ };
2730
+
2731
+
2732
+ /**
2733
+ * @param {boolean} value
2734
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2735
+ */
2736
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowwechat = function(value) {
2737
+ return jspb.Message.setProto3BooleanField(this, 41, value);
2738
+ };
2739
+
2740
+
2741
+ /**
2742
+ * optional bool allowAlipay = 42;
2743
+ * @return {boolean}
2744
+ */
2745
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getAllowalipay = function() {
2746
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 42, false));
2747
+ };
2748
+
2749
+
2750
+ /**
2751
+ * @param {boolean} value
2752
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
2753
+ */
2754
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowalipay = function(value) {
2755
+ return jspb.Message.setProto3BooleanField(this, 42, value);
2756
+ };
2757
+
2758
+
2639
2759
 
2640
2760
 
2641
2761
 
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.7.1983",
4
4
  "description": "config-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",