@wix/metro-common-builders 1.0.1332 → 1.0.1334
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.
- package/dist/es/src/proto/client/index.d.ts +4 -0
- package/dist/es/src/proto/index.d.ts +2 -0
- package/dist/es/src/proto/index.js +28 -1
- package/dist/es/src/proto/server/index.d.ts +4 -0
- package/dist/src/proto/client/index.d.ts +4 -0
- package/dist/src/proto/index.d.ts +2 -0
- package/dist/src/proto/index.js +28 -1
- package/dist/src/proto/server/index.d.ts +4 -0
- package/package.json +3 -3
|
@@ -1274,10 +1274,12 @@ declare namespace $requests {
|
|
|
1274
1274
|
}
|
|
1275
1275
|
export interface ICacheSettings {
|
|
1276
1276
|
maxAgeSeconds?: number;
|
|
1277
|
+
manual?: boolean;
|
|
1277
1278
|
}
|
|
1278
1279
|
export class CacheSettings implements ICacheSettings {
|
|
1279
1280
|
constructor(data?: ICacheSettings);
|
|
1280
1281
|
maxAgeSeconds?: number;
|
|
1282
|
+
manual?: boolean;
|
|
1281
1283
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1282
1284
|
}
|
|
1283
1285
|
export interface IFieldSet {
|
|
@@ -4505,10 +4507,12 @@ declare namespace $responses {
|
|
|
4505
4507
|
}
|
|
4506
4508
|
export interface ICacheSettings {
|
|
4507
4509
|
maxAgeSeconds: number;
|
|
4510
|
+
manual: boolean;
|
|
4508
4511
|
}
|
|
4509
4512
|
export class CacheSettings implements ICacheSettings {
|
|
4510
4513
|
constructor(data?: ICacheSettings);
|
|
4511
4514
|
maxAgeSeconds: number;
|
|
4515
|
+
manual: boolean;
|
|
4512
4516
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4513
4517
|
}
|
|
4514
4518
|
export interface IFieldSet {
|
|
@@ -1289,10 +1289,12 @@ declare namespace $wrapper {
|
|
|
1289
1289
|
}
|
|
1290
1290
|
export interface ICacheSettings {
|
|
1291
1291
|
maxAgeSeconds?: (number | null);
|
|
1292
|
+
manual?: (boolean | null);
|
|
1292
1293
|
}
|
|
1293
1294
|
export class CacheSettings implements ICacheSettings {
|
|
1294
1295
|
constructor(data?: ICacheSettings);
|
|
1295
1296
|
maxAgeSeconds?: (number | null);
|
|
1297
|
+
manual?: (boolean | null);
|
|
1296
1298
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1297
1299
|
}
|
|
1298
1300
|
export interface IFieldSet {
|
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1150',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': 'a521aac01d86c0d70205b081de4a1c5e52b4e582'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -3240,6 +3240,12 @@ $root.__lookup = function (pbjs) {
|
|
|
3240
3240
|
'id': 1,
|
|
3241
3241
|
'comment': null,
|
|
3242
3242
|
'parsedOptions': null
|
|
3243
|
+
},
|
|
3244
|
+
'manual': {
|
|
3245
|
+
'type': 'bool',
|
|
3246
|
+
'id': 2,
|
|
3247
|
+
'comment': null,
|
|
3248
|
+
'parsedOptions': null
|
|
3243
3249
|
}
|
|
3244
3250
|
},
|
|
3245
3251
|
'comment': null
|
|
@@ -21598,6 +21604,7 @@ $root.wix = (function () {
|
|
|
21598
21604
|
class CacheSettings {
|
|
21599
21605
|
constructor(props) {
|
|
21600
21606
|
this.maxAgeSeconds = props && props.maxAgeSeconds;
|
|
21607
|
+
this.manual = props && props.manual;
|
|
21601
21608
|
}
|
|
21602
21609
|
static toJSON(obj, helper, withDefaults) {
|
|
21603
21610
|
if (obj == null) {
|
|
@@ -21609,6 +21616,11 @@ $root.wix = (function () {
|
|
|
21609
21616
|
} else if (withDefaults) {
|
|
21610
21617
|
json['maxAgeSeconds'] = 0;
|
|
21611
21618
|
}
|
|
21619
|
+
if (obj['manual'] != null) {
|
|
21620
|
+
json['manual'] = obj['manual'];
|
|
21621
|
+
} else if (withDefaults) {
|
|
21622
|
+
json['manual'] = false;
|
|
21623
|
+
}
|
|
21612
21624
|
return json;
|
|
21613
21625
|
}
|
|
21614
21626
|
}
|
|
@@ -21622,6 +21634,13 @@ $root.wix = (function () {
|
|
|
21622
21634
|
} else {
|
|
21623
21635
|
delete result['maxAgeSeconds'];
|
|
21624
21636
|
}
|
|
21637
|
+
if (json['manual'] != null) {
|
|
21638
|
+
result['manual'] = json['manual'];
|
|
21639
|
+
} else if (withDefaults !== false) {
|
|
21640
|
+
result['manual'] = false;
|
|
21641
|
+
} else {
|
|
21642
|
+
delete result['manual'];
|
|
21643
|
+
}
|
|
21625
21644
|
return result;
|
|
21626
21645
|
} else
|
|
21627
21646
|
return json;
|
|
@@ -21634,6 +21653,9 @@ $root.wix = (function () {
|
|
|
21634
21653
|
if (obj['maxAgeSeconds'] != null) {
|
|
21635
21654
|
grpc['maxAgeSeconds'] = obj['maxAgeSeconds'];
|
|
21636
21655
|
}
|
|
21656
|
+
if (obj['manual'] != null) {
|
|
21657
|
+
grpc['manual'] = obj['manual'];
|
|
21658
|
+
}
|
|
21637
21659
|
return grpc;
|
|
21638
21660
|
}
|
|
21639
21661
|
}
|
|
@@ -21647,6 +21669,11 @@ $root.wix = (function () {
|
|
|
21647
21669
|
} else {
|
|
21648
21670
|
result['maxAgeSeconds'] = 0;
|
|
21649
21671
|
}
|
|
21672
|
+
if (grpc['manual'] != null) {
|
|
21673
|
+
result['manual'] = grpc['manual'];
|
|
21674
|
+
} else {
|
|
21675
|
+
result['manual'] = false;
|
|
21676
|
+
}
|
|
21650
21677
|
return result;
|
|
21651
21678
|
}
|
|
21652
21679
|
}
|
|
@@ -1274,10 +1274,12 @@ declare namespace $requests {
|
|
|
1274
1274
|
}
|
|
1275
1275
|
export interface ICacheSettings {
|
|
1276
1276
|
maxAgeSeconds: number;
|
|
1277
|
+
manual: boolean;
|
|
1277
1278
|
}
|
|
1278
1279
|
export class CacheSettings implements ICacheSettings {
|
|
1279
1280
|
constructor(data?: ICacheSettings);
|
|
1280
1281
|
maxAgeSeconds: number;
|
|
1282
|
+
manual: boolean;
|
|
1281
1283
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1282
1284
|
}
|
|
1283
1285
|
export interface IFieldSet {
|
|
@@ -4505,10 +4507,12 @@ declare namespace $responses {
|
|
|
4505
4507
|
}
|
|
4506
4508
|
export interface ICacheSettings {
|
|
4507
4509
|
maxAgeSeconds?: number;
|
|
4510
|
+
manual?: boolean;
|
|
4508
4511
|
}
|
|
4509
4512
|
export class CacheSettings implements ICacheSettings {
|
|
4510
4513
|
constructor(data?: ICacheSettings);
|
|
4511
4514
|
maxAgeSeconds?: number;
|
|
4515
|
+
manual?: boolean;
|
|
4512
4516
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4513
4517
|
}
|
|
4514
4518
|
export interface IFieldSet {
|
|
@@ -1274,10 +1274,12 @@ declare namespace $requests {
|
|
|
1274
1274
|
}
|
|
1275
1275
|
export interface ICacheSettings {
|
|
1276
1276
|
maxAgeSeconds?: number;
|
|
1277
|
+
manual?: boolean;
|
|
1277
1278
|
}
|
|
1278
1279
|
export class CacheSettings implements ICacheSettings {
|
|
1279
1280
|
constructor(data?: ICacheSettings);
|
|
1280
1281
|
maxAgeSeconds?: number;
|
|
1282
|
+
manual?: boolean;
|
|
1281
1283
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1282
1284
|
}
|
|
1283
1285
|
export interface IFieldSet {
|
|
@@ -4505,10 +4507,12 @@ declare namespace $responses {
|
|
|
4505
4507
|
}
|
|
4506
4508
|
export interface ICacheSettings {
|
|
4507
4509
|
maxAgeSeconds: number;
|
|
4510
|
+
manual: boolean;
|
|
4508
4511
|
}
|
|
4509
4512
|
export class CacheSettings implements ICacheSettings {
|
|
4510
4513
|
constructor(data?: ICacheSettings);
|
|
4511
4514
|
maxAgeSeconds: number;
|
|
4515
|
+
manual: boolean;
|
|
4512
4516
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4513
4517
|
}
|
|
4514
4518
|
export interface IFieldSet {
|
|
@@ -1289,10 +1289,12 @@ declare namespace $wrapper {
|
|
|
1289
1289
|
}
|
|
1290
1290
|
export interface ICacheSettings {
|
|
1291
1291
|
maxAgeSeconds?: (number | null);
|
|
1292
|
+
manual?: (boolean | null);
|
|
1292
1293
|
}
|
|
1293
1294
|
export class CacheSettings implements ICacheSettings {
|
|
1294
1295
|
constructor(data?: ICacheSettings);
|
|
1295
1296
|
maxAgeSeconds?: (number | null);
|
|
1297
|
+
manual?: (boolean | null);
|
|
1296
1298
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1297
1299
|
}
|
|
1298
1300
|
export interface IFieldSet {
|
package/dist/src/proto/index.js
CHANGED
|
@@ -10,7 +10,7 @@ $root.__options = {
|
|
|
10
10
|
'stringLongs': true,
|
|
11
11
|
'stdCase': false,
|
|
12
12
|
'generatorVersion': '2.0.1150',
|
|
13
|
-
'contentHash': '
|
|
13
|
+
'contentHash': 'a521aac01d86c0d70205b081de4a1c5e52b4e582'
|
|
14
14
|
};
|
|
15
15
|
$root.__lookup = function (pbjs) {
|
|
16
16
|
const root = pbjs.Root.fromJSON({
|
|
@@ -3240,6 +3240,12 @@ $root.__lookup = function (pbjs) {
|
|
|
3240
3240
|
'id': 1,
|
|
3241
3241
|
'comment': null,
|
|
3242
3242
|
'parsedOptions': null
|
|
3243
|
+
},
|
|
3244
|
+
'manual': {
|
|
3245
|
+
'type': 'bool',
|
|
3246
|
+
'id': 2,
|
|
3247
|
+
'comment': null,
|
|
3248
|
+
'parsedOptions': null
|
|
3243
3249
|
}
|
|
3244
3250
|
},
|
|
3245
3251
|
'comment': null
|
|
@@ -21598,6 +21604,7 @@ $root.wix = (function () {
|
|
|
21598
21604
|
class CacheSettings {
|
|
21599
21605
|
constructor(props) {
|
|
21600
21606
|
this.maxAgeSeconds = props && props.maxAgeSeconds;
|
|
21607
|
+
this.manual = props && props.manual;
|
|
21601
21608
|
}
|
|
21602
21609
|
static toJSON(obj, helper, withDefaults) {
|
|
21603
21610
|
if (obj == null) {
|
|
@@ -21609,6 +21616,11 @@ $root.wix = (function () {
|
|
|
21609
21616
|
} else if (withDefaults) {
|
|
21610
21617
|
json['maxAgeSeconds'] = 0;
|
|
21611
21618
|
}
|
|
21619
|
+
if (obj['manual'] != null) {
|
|
21620
|
+
json['manual'] = obj['manual'];
|
|
21621
|
+
} else if (withDefaults) {
|
|
21622
|
+
json['manual'] = false;
|
|
21623
|
+
}
|
|
21612
21624
|
return json;
|
|
21613
21625
|
}
|
|
21614
21626
|
}
|
|
@@ -21622,6 +21634,13 @@ $root.wix = (function () {
|
|
|
21622
21634
|
} else {
|
|
21623
21635
|
delete result['maxAgeSeconds'];
|
|
21624
21636
|
}
|
|
21637
|
+
if (json['manual'] != null) {
|
|
21638
|
+
result['manual'] = json['manual'];
|
|
21639
|
+
} else if (withDefaults !== false) {
|
|
21640
|
+
result['manual'] = false;
|
|
21641
|
+
} else {
|
|
21642
|
+
delete result['manual'];
|
|
21643
|
+
}
|
|
21625
21644
|
return result;
|
|
21626
21645
|
} else
|
|
21627
21646
|
return json;
|
|
@@ -21634,6 +21653,9 @@ $root.wix = (function () {
|
|
|
21634
21653
|
if (obj['maxAgeSeconds'] != null) {
|
|
21635
21654
|
grpc['maxAgeSeconds'] = obj['maxAgeSeconds'];
|
|
21636
21655
|
}
|
|
21656
|
+
if (obj['manual'] != null) {
|
|
21657
|
+
grpc['manual'] = obj['manual'];
|
|
21658
|
+
}
|
|
21637
21659
|
return grpc;
|
|
21638
21660
|
}
|
|
21639
21661
|
}
|
|
@@ -21647,6 +21669,11 @@ $root.wix = (function () {
|
|
|
21647
21669
|
} else {
|
|
21648
21670
|
result['maxAgeSeconds'] = 0;
|
|
21649
21671
|
}
|
|
21672
|
+
if (grpc['manual'] != null) {
|
|
21673
|
+
result['manual'] = grpc['manual'];
|
|
21674
|
+
} else {
|
|
21675
|
+
result['manual'] = false;
|
|
21676
|
+
}
|
|
21650
21677
|
return result;
|
|
21651
21678
|
}
|
|
21652
21679
|
}
|
|
@@ -1274,10 +1274,12 @@ declare namespace $requests {
|
|
|
1274
1274
|
}
|
|
1275
1275
|
export interface ICacheSettings {
|
|
1276
1276
|
maxAgeSeconds: number;
|
|
1277
|
+
manual: boolean;
|
|
1277
1278
|
}
|
|
1278
1279
|
export class CacheSettings implements ICacheSettings {
|
|
1279
1280
|
constructor(data?: ICacheSettings);
|
|
1280
1281
|
maxAgeSeconds: number;
|
|
1282
|
+
manual: boolean;
|
|
1281
1283
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
1282
1284
|
}
|
|
1283
1285
|
export interface IFieldSet {
|
|
@@ -4505,10 +4507,12 @@ declare namespace $responses {
|
|
|
4505
4507
|
}
|
|
4506
4508
|
export interface ICacheSettings {
|
|
4507
4509
|
maxAgeSeconds?: number;
|
|
4510
|
+
manual?: boolean;
|
|
4508
4511
|
}
|
|
4509
4512
|
export class CacheSettings implements ICacheSettings {
|
|
4510
4513
|
constructor(data?: ICacheSettings);
|
|
4511
4514
|
maxAgeSeconds?: number;
|
|
4515
|
+
manual?: boolean;
|
|
4512
4516
|
static __$$generatedFromProtobuf$$__: Symbol;
|
|
4513
4517
|
}
|
|
4514
4518
|
export interface IFieldSet {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/metro-common-builders",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1334",
|
|
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.
|
|
36
|
+
"@wix/metro-runtime": "1.1690.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": "
|
|
74
|
+
"falconPackageHash": "d4ead0661f5b01a9f2466a3fe2297bcaf8c196d23a80e3ebe40f4627"
|
|
75
75
|
}
|