@replit/protocol 0.4.19 → 0.4.20

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.
@@ -27781,6 +27781,9 @@ export namespace replit {
27781
27781
 
27782
27782
  /** Repl useReplShield */
27783
27783
  useReplShield?: (boolean|null);
27784
+
27785
+ /** Repl connectorsHost */
27786
+ connectorsHost?: (string|null);
27784
27787
  }
27785
27788
 
27786
27789
  /** Represents a Repl. */
@@ -27834,6 +27837,9 @@ export namespace replit {
27834
27837
  /** Repl useReplShield. */
27835
27838
  public useReplShield: boolean;
27836
27839
 
27840
+ /** Repl connectorsHost. */
27841
+ public connectorsHost: string;
27842
+
27837
27843
  /**
27838
27844
  * Creates a new Repl instance using the specified properties.
27839
27845
  * @param [properties] Properties to set
package/iotester/index.js CHANGED
@@ -70490,6 +70490,7 @@
70490
70490
  * @property {Array.<string>|null} [roles] Repl roles
70491
70491
  * @property {string|null} [logFields] Repl logFields
70492
70492
  * @property {boolean|null} [useReplShield] Repl useReplShield
70493
+ * @property {string|null} [connectorsHost] Repl connectorsHost
70493
70494
  */
70494
70495
 
70495
70496
  /**
@@ -70619,6 +70620,14 @@
70619
70620
  */
70620
70621
  Repl.prototype.useReplShield = false;
70621
70622
 
70623
+ /**
70624
+ * Repl connectorsHost.
70625
+ * @member {string} connectorsHost
70626
+ * @memberof replit.goval.api.repl.Repl
70627
+ * @instance
70628
+ */
70629
+ Repl.prototype.connectorsHost = "";
70630
+
70622
70631
  /**
70623
70632
  * Creates a new Repl instance using the specified properties.
70624
70633
  * @function create
@@ -70672,6 +70681,8 @@
70672
70681
  $root.replit.goval.api.repl.Org.encode(message.org, writer.uint32(/* id 14, wireType 2 =*/114).fork()).ldelim();
70673
70682
  if (message.useReplShield != null && Object.hasOwnProperty.call(message, "useReplShield"))
70674
70683
  writer.uint32(/* id 15, wireType 0 =*/120).bool(message.useReplShield);
70684
+ if (message.connectorsHost != null && Object.hasOwnProperty.call(message, "connectorsHost"))
70685
+ writer.uint32(/* id 16, wireType 2 =*/130).string(message.connectorsHost);
70675
70686
  return writer;
70676
70687
  };
70677
70688
 
@@ -70766,6 +70777,10 @@
70766
70777
  message.useReplShield = reader.bool();
70767
70778
  break;
70768
70779
  }
70780
+ case 16: {
70781
+ message.connectorsHost = reader.string();
70782
+ break;
70783
+ }
70769
70784
  default:
70770
70785
  reader.skipType(tag & 7);
70771
70786
  break;
@@ -70853,6 +70868,9 @@
70853
70868
  if (message.useReplShield != null && message.hasOwnProperty("useReplShield"))
70854
70869
  if (typeof message.useReplShield !== "boolean")
70855
70870
  return "useReplShield: boolean expected";
70871
+ if (message.connectorsHost != null && message.hasOwnProperty("connectorsHost"))
70872
+ if (!$util.isString(message.connectorsHost))
70873
+ return "connectorsHost: string expected";
70856
70874
  return null;
70857
70875
  };
70858
70876
 
@@ -70910,6 +70928,8 @@
70910
70928
  message.logFields = String(object.logFields);
70911
70929
  if (object.useReplShield != null)
70912
70930
  message.useReplShield = Boolean(object.useReplShield);
70931
+ if (object.connectorsHost != null)
70932
+ message.connectorsHost = String(object.connectorsHost);
70913
70933
  return message;
70914
70934
  };
70915
70935
 
@@ -70942,6 +70962,7 @@
70942
70962
  object.logFields = "";
70943
70963
  object.org = null;
70944
70964
  object.useReplShield = false;
70965
+ object.connectorsHost = "";
70945
70966
  }
70946
70967
  if (message.id != null && message.hasOwnProperty("id"))
70947
70968
  object.id = message.id;
@@ -70974,6 +70995,8 @@
70974
70995
  object.org = $root.replit.goval.api.repl.Org.toObject(message.org, options);
70975
70996
  if (message.useReplShield != null && message.hasOwnProperty("useReplShield"))
70976
70997
  object.useReplShield = message.useReplShield;
70998
+ if (message.connectorsHost != null && message.hasOwnProperty("connectorsHost"))
70999
+ object.connectorsHost = message.connectorsHost;
70977
71000
  return object;
70978
71001
  };
70979
71002
 
package/main/index.d.ts CHANGED
@@ -27781,6 +27781,9 @@ export namespace replit {
27781
27781
 
27782
27782
  /** Repl useReplShield */
27783
27783
  useReplShield?: (boolean|null);
27784
+
27785
+ /** Repl connectorsHost */
27786
+ connectorsHost?: (string|null);
27784
27787
  }
27785
27788
 
27786
27789
  /** Represents a Repl. */
@@ -27834,6 +27837,9 @@ export namespace replit {
27834
27837
  /** Repl useReplShield. */
27835
27838
  public useReplShield: boolean;
27836
27839
 
27840
+ /** Repl connectorsHost. */
27841
+ public connectorsHost: string;
27842
+
27837
27843
  /**
27838
27844
  * Creates a new Repl instance using the specified properties.
27839
27845
  * @param [properties] Properties to set
package/main/index.js CHANGED
@@ -70490,6 +70490,7 @@
70490
70490
  * @property {Array.<string>|null} [roles] Repl roles
70491
70491
  * @property {string|null} [logFields] Repl logFields
70492
70492
  * @property {boolean|null} [useReplShield] Repl useReplShield
70493
+ * @property {string|null} [connectorsHost] Repl connectorsHost
70493
70494
  */
70494
70495
 
70495
70496
  /**
@@ -70619,6 +70620,14 @@
70619
70620
  */
70620
70621
  Repl.prototype.useReplShield = false;
70621
70622
 
70623
+ /**
70624
+ * Repl connectorsHost.
70625
+ * @member {string} connectorsHost
70626
+ * @memberof replit.goval.api.repl.Repl
70627
+ * @instance
70628
+ */
70629
+ Repl.prototype.connectorsHost = "";
70630
+
70622
70631
  /**
70623
70632
  * Creates a new Repl instance using the specified properties.
70624
70633
  * @function create
@@ -70672,6 +70681,8 @@
70672
70681
  $root.replit.goval.api.repl.Org.encode(message.org, writer.uint32(/* id 14, wireType 2 =*/114).fork()).ldelim();
70673
70682
  if (message.useReplShield != null && Object.hasOwnProperty.call(message, "useReplShield"))
70674
70683
  writer.uint32(/* id 15, wireType 0 =*/120).bool(message.useReplShield);
70684
+ if (message.connectorsHost != null && Object.hasOwnProperty.call(message, "connectorsHost"))
70685
+ writer.uint32(/* id 16, wireType 2 =*/130).string(message.connectorsHost);
70675
70686
  return writer;
70676
70687
  };
70677
70688
 
@@ -70766,6 +70777,10 @@
70766
70777
  message.useReplShield = reader.bool();
70767
70778
  break;
70768
70779
  }
70780
+ case 16: {
70781
+ message.connectorsHost = reader.string();
70782
+ break;
70783
+ }
70769
70784
  default:
70770
70785
  reader.skipType(tag & 7);
70771
70786
  break;
@@ -70853,6 +70868,9 @@
70853
70868
  if (message.useReplShield != null && message.hasOwnProperty("useReplShield"))
70854
70869
  if (typeof message.useReplShield !== "boolean")
70855
70870
  return "useReplShield: boolean expected";
70871
+ if (message.connectorsHost != null && message.hasOwnProperty("connectorsHost"))
70872
+ if (!$util.isString(message.connectorsHost))
70873
+ return "connectorsHost: string expected";
70856
70874
  return null;
70857
70875
  };
70858
70876
 
@@ -70910,6 +70928,8 @@
70910
70928
  message.logFields = String(object.logFields);
70911
70929
  if (object.useReplShield != null)
70912
70930
  message.useReplShield = Boolean(object.useReplShield);
70931
+ if (object.connectorsHost != null)
70932
+ message.connectorsHost = String(object.connectorsHost);
70913
70933
  return message;
70914
70934
  };
70915
70935
 
@@ -70942,6 +70962,7 @@
70942
70962
  object.logFields = "";
70943
70963
  object.org = null;
70944
70964
  object.useReplShield = false;
70965
+ object.connectorsHost = "";
70945
70966
  }
70946
70967
  if (message.id != null && message.hasOwnProperty("id"))
70947
70968
  object.id = message.id;
@@ -70974,6 +70995,8 @@
70974
70995
  object.org = $root.replit.goval.api.repl.Org.toObject(message.org, options);
70975
70996
  if (message.useReplShield != null && message.hasOwnProperty("useReplShield"))
70976
70997
  object.useReplShield = message.useReplShield;
70998
+ if (message.connectorsHost != null && message.hasOwnProperty("connectorsHost"))
70999
+ object.connectorsHost = message.connectorsHost;
70977
71000
  return object;
70978
71001
  };
70979
71002
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@replit/protocol",
3
- "version": "0.4.19",
3
+ "version": "0.4.20",
4
4
  "description": "JavaScript bindings for the Replit protocol",
5
5
  "main": "main/index.js",
6
6
  "author": "eng@replit.com",