@sellout/models 0.0.380 → 0.0.381
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/sellout-proto.js +22 -0
- package/package.json +3 -3
- package/src/proto/order.proto +1 -0
package/.dist/sellout-proto.js
CHANGED
|
@@ -36358,6 +36358,7 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36358
36358
|
* @property {string|null} [interval] OrderAnalyticsQuery interval
|
|
36359
36359
|
* @property {Array.<string>|null} [types] OrderAnalyticsQuery types
|
|
36360
36360
|
* @property {string|null} [seasonId] OrderAnalyticsQuery seasonId
|
|
36361
|
+
* @property {boolean|null} [isEventCalendar] OrderAnalyticsQuery isEventCalendar
|
|
36361
36362
|
*/
|
|
36362
36363
|
|
|
36363
36364
|
/**
|
|
@@ -36448,6 +36449,14 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36448
36449
|
*/
|
|
36449
36450
|
OrderAnalyticsQuery.prototype.seasonId = "";
|
|
36450
36451
|
|
|
36452
|
+
/**
|
|
36453
|
+
* OrderAnalyticsQuery isEventCalendar.
|
|
36454
|
+
* @member {boolean} isEventCalendar
|
|
36455
|
+
* @memberof OrderAnalyticsQuery
|
|
36456
|
+
* @instance
|
|
36457
|
+
*/
|
|
36458
|
+
OrderAnalyticsQuery.prototype.isEventCalendar = false;
|
|
36459
|
+
|
|
36451
36460
|
/**
|
|
36452
36461
|
* Creates a new OrderAnalyticsQuery instance using the specified properties.
|
|
36453
36462
|
* @function create
|
|
@@ -36491,6 +36500,8 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36491
36500
|
writer.uint32(/* id 7, wireType 2 =*/58).string(message.types[i]);
|
|
36492
36501
|
if (message.seasonId != null && Object.hasOwnProperty.call(message, "seasonId"))
|
|
36493
36502
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.seasonId);
|
|
36503
|
+
if (message.isEventCalendar != null && Object.hasOwnProperty.call(message, "isEventCalendar"))
|
|
36504
|
+
writer.uint32(/* id 9, wireType 0 =*/72).bool(message.isEventCalendar);
|
|
36494
36505
|
return writer;
|
|
36495
36506
|
};
|
|
36496
36507
|
|
|
@@ -36554,6 +36565,9 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36554
36565
|
case 8:
|
|
36555
36566
|
message.seasonId = reader.string();
|
|
36556
36567
|
break;
|
|
36568
|
+
case 9:
|
|
36569
|
+
message.isEventCalendar = reader.bool();
|
|
36570
|
+
break;
|
|
36557
36571
|
default:
|
|
36558
36572
|
reader.skipType(tag & 7);
|
|
36559
36573
|
break;
|
|
@@ -36620,6 +36634,9 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36620
36634
|
if (message.seasonId != null && message.hasOwnProperty("seasonId"))
|
|
36621
36635
|
if (!$util.isString(message.seasonId))
|
|
36622
36636
|
return "seasonId: string expected";
|
|
36637
|
+
if (message.isEventCalendar != null && message.hasOwnProperty("isEventCalendar"))
|
|
36638
|
+
if (typeof message.isEventCalendar !== "boolean")
|
|
36639
|
+
return "isEventCalendar: boolean expected";
|
|
36623
36640
|
return null;
|
|
36624
36641
|
};
|
|
36625
36642
|
|
|
@@ -36658,6 +36675,8 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36658
36675
|
}
|
|
36659
36676
|
if (object.seasonId != null)
|
|
36660
36677
|
message.seasonId = String(object.seasonId);
|
|
36678
|
+
if (object.isEventCalendar != null)
|
|
36679
|
+
message.isEventCalendar = Boolean(object.isEventCalendar);
|
|
36661
36680
|
return message;
|
|
36662
36681
|
};
|
|
36663
36682
|
|
|
@@ -36685,6 +36704,7 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36685
36704
|
object.endDate = 0;
|
|
36686
36705
|
object.interval = "";
|
|
36687
36706
|
object.seasonId = "";
|
|
36707
|
+
object.isEventCalendar = false;
|
|
36688
36708
|
}
|
|
36689
36709
|
if (message.eventId != null && message.hasOwnProperty("eventId"))
|
|
36690
36710
|
object.eventId = message.eventId;
|
|
@@ -36707,6 +36727,8 @@ $root.OrderAnalyticsQuery = (function() {
|
|
|
36707
36727
|
}
|
|
36708
36728
|
if (message.seasonId != null && message.hasOwnProperty("seasonId"))
|
|
36709
36729
|
object.seasonId = message.seasonId;
|
|
36730
|
+
if (message.isEventCalendar != null && message.hasOwnProperty("isEventCalendar"))
|
|
36731
|
+
object.isEventCalendar = message.isEventCalendar;
|
|
36710
36732
|
return object;
|
|
36711
36733
|
};
|
|
36712
36734
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellout/models",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.381",
|
|
4
4
|
"description": "Sellout.io models",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@apollo/client": "^3.9.6",
|
|
20
20
|
"@hapi/joi": "^17.1.1",
|
|
21
|
-
"@sellout/utils": "^0.0.
|
|
21
|
+
"@sellout/utils": "^0.0.381",
|
|
22
22
|
"@types/hapi__joi": "^16.0.1",
|
|
23
23
|
"@types/shortid": "^0.0.29",
|
|
24
24
|
"@types/zen-observable": "^0.8.7",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"protobufjs": "^6.11.2",
|
|
33
33
|
"typescript": "^4.9.5"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "9986e07d598c86485ca504a92be9131d7bbde325"
|
|
36
36
|
}
|