@wix/metro-common-builders 1.0.1300 → 1.0.1302

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.
@@ -1221,10 +1221,12 @@ declare namespace $requests {
1221
1221
  }
1222
1222
  export interface IExtensible {
1223
1223
  nestedExtensionFieldPath?: string;
1224
+ filterable?: boolean;
1224
1225
  }
1225
1226
  export class Extensible implements IExtensible {
1226
1227
  constructor(data?: IExtensible);
1227
1228
  nestedExtensionFieldPath?: string;
1229
+ filterable?: boolean;
1228
1230
  static __$$generatedFromProtobuf$$__: Symbol;
1229
1231
  }
1230
1232
  export interface IMessageAppendix {
@@ -4420,10 +4422,12 @@ declare namespace $responses {
4420
4422
  }
4421
4423
  export interface IExtensible {
4422
4424
  nestedExtensionFieldPath: string;
4425
+ filterable: boolean;
4423
4426
  }
4424
4427
  export class Extensible implements IExtensible {
4425
4428
  constructor(data?: IExtensible);
4426
4429
  nestedExtensionFieldPath: string;
4430
+ filterable: boolean;
4427
4431
  static __$$generatedFromProtobuf$$__: Symbol;
4428
4432
  }
4429
4433
  export interface IMessageAppendix {
@@ -1236,10 +1236,12 @@ declare namespace $wrapper {
1236
1236
  }
1237
1237
  export interface IExtensible {
1238
1238
  nestedExtensionFieldPath?: (string | null);
1239
+ filterable?: (boolean | null);
1239
1240
  }
1240
1241
  export class Extensible implements IExtensible {
1241
1242
  constructor(data?: IExtensible);
1242
1243
  nestedExtensionFieldPath?: (string | null);
1244
+ filterable?: (boolean | null);
1243
1245
  static __$$generatedFromProtobuf$$__: Symbol;
1244
1246
  }
1245
1247
  export interface IMessageAppendix {
@@ -10,7 +10,7 @@ $root.__options = {
10
10
  'stringLongs': true,
11
11
  'stdCase': false,
12
12
  'generatorVersion': '2.0.1149',
13
- 'contentHash': '760c9b8e722fdddb5755f5dd23864f757784f66a'
13
+ 'contentHash': 'ae5b7dd48aeca6bfd688e55a081302db39a38d34'
14
14
  };
15
15
  $root.__lookup = function (pbjs) {
16
16
  const root = pbjs.Root.fromJSON({
@@ -2931,6 +2931,12 @@ $root.__lookup = function (pbjs) {
2931
2931
  'id': 1,
2932
2932
  'comment': null,
2933
2933
  'parsedOptions': null
2934
+ },
2935
+ 'filterable': {
2936
+ 'type': 'bool',
2937
+ 'id': 2,
2938
+ 'comment': null,
2939
+ 'parsedOptions': null
2934
2940
  }
2935
2941
  },
2936
2942
  'comment': null
@@ -20986,6 +20992,7 @@ $root.wix = (function () {
20986
20992
  class Extensible {
20987
20993
  constructor(props) {
20988
20994
  this.nestedExtensionFieldPath = props && props.nestedExtensionFieldPath;
20995
+ this.filterable = props && props.filterable;
20989
20996
  }
20990
20997
  static toJSON(obj, helper, withDefaults) {
20991
20998
  if (obj == null) {
@@ -20997,6 +21004,11 @@ $root.wix = (function () {
20997
21004
  } else if (withDefaults) {
20998
21005
  json['nestedExtensionFieldPath'] = '';
20999
21006
  }
21007
+ if (obj['filterable'] != null) {
21008
+ json['filterable'] = obj['filterable'];
21009
+ } else if (withDefaults) {
21010
+ json['filterable'] = false;
21011
+ }
21000
21012
  return json;
21001
21013
  }
21002
21014
  }
@@ -21010,6 +21022,13 @@ $root.wix = (function () {
21010
21022
  } else {
21011
21023
  delete result['nestedExtensionFieldPath'];
21012
21024
  }
21025
+ if (json['filterable'] != null) {
21026
+ result['filterable'] = json['filterable'];
21027
+ } else if (withDefaults !== false) {
21028
+ result['filterable'] = false;
21029
+ } else {
21030
+ delete result['filterable'];
21031
+ }
21013
21032
  return result;
21014
21033
  } else
21015
21034
  return json;
@@ -21022,6 +21041,9 @@ $root.wix = (function () {
21022
21041
  if (obj['nestedExtensionFieldPath'] != null) {
21023
21042
  grpc['nestedExtensionFieldPath'] = obj['nestedExtensionFieldPath'];
21024
21043
  }
21044
+ if (obj['filterable'] != null) {
21045
+ grpc['filterable'] = obj['filterable'];
21046
+ }
21025
21047
  return grpc;
21026
21048
  }
21027
21049
  }
@@ -21035,6 +21057,11 @@ $root.wix = (function () {
21035
21057
  } else {
21036
21058
  result['nestedExtensionFieldPath'] = '';
21037
21059
  }
21060
+ if (grpc['filterable'] != null) {
21061
+ result['filterable'] = grpc['filterable'];
21062
+ } else {
21063
+ result['filterable'] = false;
21064
+ }
21038
21065
  return result;
21039
21066
  }
21040
21067
  }
@@ -1221,10 +1221,12 @@ declare namespace $requests {
1221
1221
  }
1222
1222
  export interface IExtensible {
1223
1223
  nestedExtensionFieldPath: string;
1224
+ filterable: boolean;
1224
1225
  }
1225
1226
  export class Extensible implements IExtensible {
1226
1227
  constructor(data?: IExtensible);
1227
1228
  nestedExtensionFieldPath: string;
1229
+ filterable: boolean;
1228
1230
  static __$$generatedFromProtobuf$$__: Symbol;
1229
1231
  }
1230
1232
  export interface IMessageAppendix {
@@ -4420,10 +4422,12 @@ declare namespace $responses {
4420
4422
  }
4421
4423
  export interface IExtensible {
4422
4424
  nestedExtensionFieldPath?: string;
4425
+ filterable?: boolean;
4423
4426
  }
4424
4427
  export class Extensible implements IExtensible {
4425
4428
  constructor(data?: IExtensible);
4426
4429
  nestedExtensionFieldPath?: string;
4430
+ filterable?: boolean;
4427
4431
  static __$$generatedFromProtobuf$$__: Symbol;
4428
4432
  }
4429
4433
  export interface IMessageAppendix {
@@ -1221,10 +1221,12 @@ declare namespace $requests {
1221
1221
  }
1222
1222
  export interface IExtensible {
1223
1223
  nestedExtensionFieldPath?: string;
1224
+ filterable?: boolean;
1224
1225
  }
1225
1226
  export class Extensible implements IExtensible {
1226
1227
  constructor(data?: IExtensible);
1227
1228
  nestedExtensionFieldPath?: string;
1229
+ filterable?: boolean;
1228
1230
  static __$$generatedFromProtobuf$$__: Symbol;
1229
1231
  }
1230
1232
  export interface IMessageAppendix {
@@ -4420,10 +4422,12 @@ declare namespace $responses {
4420
4422
  }
4421
4423
  export interface IExtensible {
4422
4424
  nestedExtensionFieldPath: string;
4425
+ filterable: boolean;
4423
4426
  }
4424
4427
  export class Extensible implements IExtensible {
4425
4428
  constructor(data?: IExtensible);
4426
4429
  nestedExtensionFieldPath: string;
4430
+ filterable: boolean;
4427
4431
  static __$$generatedFromProtobuf$$__: Symbol;
4428
4432
  }
4429
4433
  export interface IMessageAppendix {
@@ -1236,10 +1236,12 @@ declare namespace $wrapper {
1236
1236
  }
1237
1237
  export interface IExtensible {
1238
1238
  nestedExtensionFieldPath?: (string | null);
1239
+ filterable?: (boolean | null);
1239
1240
  }
1240
1241
  export class Extensible implements IExtensible {
1241
1242
  constructor(data?: IExtensible);
1242
1243
  nestedExtensionFieldPath?: (string | null);
1244
+ filterable?: (boolean | null);
1243
1245
  static __$$generatedFromProtobuf$$__: Symbol;
1244
1246
  }
1245
1247
  export interface IMessageAppendix {
@@ -10,7 +10,7 @@ $root.__options = {
10
10
  'stringLongs': true,
11
11
  'stdCase': false,
12
12
  'generatorVersion': '2.0.1149',
13
- 'contentHash': '760c9b8e722fdddb5755f5dd23864f757784f66a'
13
+ 'contentHash': 'ae5b7dd48aeca6bfd688e55a081302db39a38d34'
14
14
  };
15
15
  $root.__lookup = function (pbjs) {
16
16
  const root = pbjs.Root.fromJSON({
@@ -2931,6 +2931,12 @@ $root.__lookup = function (pbjs) {
2931
2931
  'id': 1,
2932
2932
  'comment': null,
2933
2933
  'parsedOptions': null
2934
+ },
2935
+ 'filterable': {
2936
+ 'type': 'bool',
2937
+ 'id': 2,
2938
+ 'comment': null,
2939
+ 'parsedOptions': null
2934
2940
  }
2935
2941
  },
2936
2942
  'comment': null
@@ -20986,6 +20992,7 @@ $root.wix = (function () {
20986
20992
  class Extensible {
20987
20993
  constructor(props) {
20988
20994
  this.nestedExtensionFieldPath = props && props.nestedExtensionFieldPath;
20995
+ this.filterable = props && props.filterable;
20989
20996
  }
20990
20997
  static toJSON(obj, helper, withDefaults) {
20991
20998
  if (obj == null) {
@@ -20997,6 +21004,11 @@ $root.wix = (function () {
20997
21004
  } else if (withDefaults) {
20998
21005
  json['nestedExtensionFieldPath'] = '';
20999
21006
  }
21007
+ if (obj['filterable'] != null) {
21008
+ json['filterable'] = obj['filterable'];
21009
+ } else if (withDefaults) {
21010
+ json['filterable'] = false;
21011
+ }
21000
21012
  return json;
21001
21013
  }
21002
21014
  }
@@ -21010,6 +21022,13 @@ $root.wix = (function () {
21010
21022
  } else {
21011
21023
  delete result['nestedExtensionFieldPath'];
21012
21024
  }
21025
+ if (json['filterable'] != null) {
21026
+ result['filterable'] = json['filterable'];
21027
+ } else if (withDefaults !== false) {
21028
+ result['filterable'] = false;
21029
+ } else {
21030
+ delete result['filterable'];
21031
+ }
21013
21032
  return result;
21014
21033
  } else
21015
21034
  return json;
@@ -21022,6 +21041,9 @@ $root.wix = (function () {
21022
21041
  if (obj['nestedExtensionFieldPath'] != null) {
21023
21042
  grpc['nestedExtensionFieldPath'] = obj['nestedExtensionFieldPath'];
21024
21043
  }
21044
+ if (obj['filterable'] != null) {
21045
+ grpc['filterable'] = obj['filterable'];
21046
+ }
21025
21047
  return grpc;
21026
21048
  }
21027
21049
  }
@@ -21035,6 +21057,11 @@ $root.wix = (function () {
21035
21057
  } else {
21036
21058
  result['nestedExtensionFieldPath'] = '';
21037
21059
  }
21060
+ if (grpc['filterable'] != null) {
21061
+ result['filterable'] = grpc['filterable'];
21062
+ } else {
21063
+ result['filterable'] = false;
21064
+ }
21038
21065
  return result;
21039
21066
  }
21040
21067
  }
@@ -1221,10 +1221,12 @@ declare namespace $requests {
1221
1221
  }
1222
1222
  export interface IExtensible {
1223
1223
  nestedExtensionFieldPath: string;
1224
+ filterable: boolean;
1224
1225
  }
1225
1226
  export class Extensible implements IExtensible {
1226
1227
  constructor(data?: IExtensible);
1227
1228
  nestedExtensionFieldPath: string;
1229
+ filterable: boolean;
1228
1230
  static __$$generatedFromProtobuf$$__: Symbol;
1229
1231
  }
1230
1232
  export interface IMessageAppendix {
@@ -4420,10 +4422,12 @@ declare namespace $responses {
4420
4422
  }
4421
4423
  export interface IExtensible {
4422
4424
  nestedExtensionFieldPath?: string;
4425
+ filterable?: boolean;
4423
4426
  }
4424
4427
  export class Extensible implements IExtensible {
4425
4428
  constructor(data?: IExtensible);
4426
4429
  nestedExtensionFieldPath?: string;
4430
+ filterable?: boolean;
4427
4431
  static __$$generatedFromProtobuf$$__: Symbol;
4428
4432
  }
4429
4433
  export interface IMessageAppendix {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/metro-common-builders",
3
- "version": "1.0.1300",
3
+ "version": "1.0.1302",
4
4
  "license": "UNLICENSED",
5
5
  "author": {
6
6
  "name": "Eli Ponyatovski",
@@ -33,7 +33,7 @@
33
33
  "*.{js,ts}": "yoshi lint"
34
34
  },
35
35
  "dependencies": {
36
- "@wix/metro-runtime": "1.1656.0",
36
+ "@wix/metro-runtime": "1.1658.0",
37
37
  "long": "^5.1.0"
38
38
  },
39
39
  "devDependencies": {
@@ -71,5 +71,5 @@
71
71
  "wallaby": {
72
72
  "autoDetect": true
73
73
  },
74
- "falconPackageHash": "a61c6c5c4740af50da9034d6feb1dd5303f8fb621251c0b13beeafb6"
74
+ "falconPackageHash": "ded8b2ebc75251114374de34d73a3e0a85dc13bf14482e979889e874"
75
75
  }