@sellout/models 0.0.364 → 0.0.365
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/graphql/mutations/createEvent.mutation.js +5 -1
- package/.dist/graphql/mutations/createEvent.mutation.js.map +1 -1
- package/.dist/graphql/mutations/createSeason.mutation.js +5 -1
- package/.dist/graphql/mutations/createSeason.mutation.js.map +1 -1
- package/.dist/graphql/mutations/duplicateEvent.mutation.js +5 -1
- package/.dist/graphql/mutations/duplicateEvent.mutation.js.map +1 -1
- package/.dist/graphql/mutations/publishEvent.mutation.js +5 -1
- package/.dist/graphql/mutations/publishEvent.mutation.js.map +1 -1
- package/.dist/graphql/mutations/publishSeason.mutation.js +5 -1
- package/.dist/graphql/mutations/publishSeason.mutation.js.map +1 -1
- package/.dist/graphql/mutations/updateEvent.mutation.js +5 -1
- package/.dist/graphql/mutations/updateEvent.mutation.js.map +1 -1
- package/.dist/graphql/mutations/updateSeason.mutation.js +5 -1
- package/.dist/graphql/mutations/updateSeason.mutation.js.map +1 -1
- package/.dist/graphql/mutations/uploadFiles.mutation.js +2 -2
- package/.dist/graphql/queries/customerOrders.query.js +5 -1
- package/.dist/graphql/queries/customerOrders.query.js.map +1 -1
- package/.dist/graphql/queries/event.query.js +5 -1
- package/.dist/graphql/queries/event.query.js.map +1 -1
- package/.dist/graphql/queries/events.query.js +5 -1
- package/.dist/graphql/queries/events.query.js.map +1 -1
- package/.dist/graphql/queries/eventsAdminCalender.query.js +5 -1
- package/.dist/graphql/queries/eventsAdminCalender.query.js.map +1 -1
- package/.dist/graphql/queries/order.query.js +10 -2
- package/.dist/graphql/queries/order.query.js.map +1 -1
- package/.dist/graphql/queries/orders.query.js +10 -2
- package/.dist/graphql/queries/orders.query.js.map +1 -1
- package/.dist/graphql/queries/publicEvent.query.js +5 -1
- package/.dist/graphql/queries/publicEvent.query.js.map +1 -1
- package/.dist/graphql/queries/publicSeason.query.js +5 -1
- package/.dist/graphql/queries/publicSeason.query.js.map +1 -1
- package/.dist/graphql/queries/season.query.js +5 -1
- package/.dist/graphql/queries/season.query.js.map +1 -1
- package/.dist/graphql/queries/seasons.query.js +5 -1
- package/.dist/graphql/queries/seasons.query.js.map +1 -1
- package/.dist/graphql/queries/waitList.query.js +5 -1
- package/.dist/graphql/queries/waitList.query.js.map +1 -1
- package/.dist/interfaces/IEvent.d.ts +2 -1
- package/.dist/interfaces/IEvent.js.map +1 -1
- package/.dist/interfaces/IEventPosterUrl.d.ts +5 -0
- package/.dist/interfaces/IEventPosterUrl.js +3 -0
- package/.dist/interfaces/IEventPosterUrl.js.map +1 -0
- package/.dist/interfaces/ISeason.d.ts +2 -1
- package/.dist/interfaces/ISeason.js.map +1 -1
- package/.dist/interfaces/ISeasonPosterUrl.d.ts +5 -0
- package/.dist/interfaces/ISeasonPosterUrl.js +3 -0
- package/.dist/interfaces/ISeasonPosterUrl.js.map +1 -0
- package/.dist/schemas/Event.d.ts +12 -2
- package/.dist/schemas/Event.js +15 -4
- package/.dist/schemas/Event.js.map +1 -1
- package/.dist/schemas/Season.d.ts +12 -2
- package/.dist/schemas/Season.js +15 -4
- package/.dist/schemas/Season.js.map +1 -1
- package/.dist/sellout-proto.js +322 -48
- package/.dist/utils/EventUtil.js +16 -6
- package/.dist/utils/EventUtil.js.map +1 -1
- package/.dist/utils/SeasonUtil.js +15 -5
- package/.dist/utils/SeasonUtil.js.map +1 -1
- package/package.json +3 -3
- package/src/graphql/mutations/createEvent.mutation.ts +5 -1
- package/src/graphql/mutations/createSeason.mutation.ts +5 -1
- package/src/graphql/mutations/duplicateEvent.mutation.ts +5 -1
- package/src/graphql/mutations/publishEvent.mutation.ts +5 -1
- package/src/graphql/mutations/publishSeason.mutation.ts +5 -1
- package/src/graphql/mutations/updateEvent.mutation.ts +5 -1
- package/src/graphql/mutations/updateSeason.mutation.ts +5 -1
- package/src/graphql/mutations/uploadFiles.mutation.ts +2 -2
- package/src/graphql/queries/customerOrders.query.ts +5 -1
- package/src/graphql/queries/event.query.ts +5 -1
- package/src/graphql/queries/events.query.ts +5 -1
- package/src/graphql/queries/eventsAdminCalender.query.ts +5 -1
- package/src/graphql/queries/order.query.ts +10 -2
- package/src/graphql/queries/orders.query.ts +10 -2
- package/src/graphql/queries/publicEvent.query.ts +5 -1
- package/src/graphql/queries/publicSeason.query.ts +5 -1
- package/src/graphql/queries/season.query.ts +5 -1
- package/src/graphql/queries/seasons.query.ts +5 -1
- package/src/graphql/queries/waitList.query.ts +5 -1
- package/src/interfaces/IEvent.ts +2 -1
- package/src/interfaces/IEventPosterUrl.ts +5 -0
- package/src/interfaces/ISeason.ts +2 -2
- package/src/interfaces/ISeasonPosterUrl.ts +5 -0
- package/src/proto/event.proto +9 -3
- package/src/proto/file-upload.proto +1 -0
- package/src/proto/season.proto +2 -2
- package/src/schemas/Event.ts +16 -4
- package/src/schemas/Season.ts +15 -4
- package/src/utils/EventUtil.ts +16 -6
- package/src/utils/SeasonUtil.ts +16 -5
package/.dist/sellout-proto.js
CHANGED
|
@@ -88016,7 +88016,7 @@ $root.Event = (function() {
|
|
|
88016
88016
|
* @property {string|null} [name] Event name
|
|
88017
88017
|
* @property {string|null} [subtitle] Event subtitle
|
|
88018
88018
|
* @property {string|null} [description] Event description
|
|
88019
|
-
* @property {
|
|
88019
|
+
* @property {IPosterImageUrl|null} [posterImageUrl] Event posterImageUrl
|
|
88020
88020
|
* @property {string|null} [venueId] Event venueId
|
|
88021
88021
|
* @property {number|null} [createdAt] Event createdAt
|
|
88022
88022
|
* @property {boolean|null} [publishable] Event publishable
|
|
@@ -88129,11 +88129,11 @@ $root.Event = (function() {
|
|
|
88129
88129
|
|
|
88130
88130
|
/**
|
|
88131
88131
|
* Event posterImageUrl.
|
|
88132
|
-
* @member {
|
|
88132
|
+
* @member {IPosterImageUrl|null|undefined} posterImageUrl
|
|
88133
88133
|
* @memberof Event
|
|
88134
88134
|
* @instance
|
|
88135
88135
|
*/
|
|
88136
|
-
Event.prototype.posterImageUrl =
|
|
88136
|
+
Event.prototype.posterImageUrl = null;
|
|
88137
88137
|
|
|
88138
88138
|
/**
|
|
88139
88139
|
* Event venueId.
|
|
@@ -88468,7 +88468,7 @@ $root.Event = (function() {
|
|
|
88468
88468
|
if (message.description != null && Object.hasOwnProperty.call(message, "description"))
|
|
88469
88469
|
writer.uint32(/* id 6, wireType 2 =*/50).string(message.description);
|
|
88470
88470
|
if (message.posterImageUrl != null && Object.hasOwnProperty.call(message, "posterImageUrl"))
|
|
88471
|
-
writer.uint32(/* id 7, wireType 2 =*/58).
|
|
88471
|
+
$root.PosterImageUrl.encode(message.posterImageUrl, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
|
|
88472
88472
|
if (message.venueId != null && Object.hasOwnProperty.call(message, "venueId"))
|
|
88473
88473
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.venueId);
|
|
88474
88474
|
if (message.createdAt != null && Object.hasOwnProperty.call(message, "createdAt"))
|
|
@@ -88604,7 +88604,7 @@ $root.Event = (function() {
|
|
|
88604
88604
|
message.description = reader.string();
|
|
88605
88605
|
break;
|
|
88606
88606
|
case 7:
|
|
88607
|
-
message.posterImageUrl = reader.
|
|
88607
|
+
message.posterImageUrl = $root.PosterImageUrl.decode(reader, reader.uint32());
|
|
88608
88608
|
break;
|
|
88609
88609
|
case 8:
|
|
88610
88610
|
message.venueId = reader.string();
|
|
@@ -88786,9 +88786,11 @@ $root.Event = (function() {
|
|
|
88786
88786
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
88787
88787
|
if (!$util.isString(message.description))
|
|
88788
88788
|
return "description: string expected";
|
|
88789
|
-
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
88790
|
-
|
|
88791
|
-
|
|
88789
|
+
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl")) {
|
|
88790
|
+
var error = $root.PosterImageUrl.verify(message.posterImageUrl);
|
|
88791
|
+
if (error)
|
|
88792
|
+
return "posterImageUrl." + error;
|
|
88793
|
+
}
|
|
88792
88794
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
88793
88795
|
if (!$util.isString(message.venueId))
|
|
88794
88796
|
return "venueId: string expected";
|
|
@@ -88983,8 +88985,11 @@ $root.Event = (function() {
|
|
|
88983
88985
|
message.subtitle = String(object.subtitle);
|
|
88984
88986
|
if (object.description != null)
|
|
88985
88987
|
message.description = String(object.description);
|
|
88986
|
-
if (object.posterImageUrl != null)
|
|
88987
|
-
|
|
88988
|
+
if (object.posterImageUrl != null) {
|
|
88989
|
+
if (typeof object.posterImageUrl !== "object")
|
|
88990
|
+
throw TypeError(".Event.posterImageUrl: object expected");
|
|
88991
|
+
message.posterImageUrl = $root.PosterImageUrl.fromObject(object.posterImageUrl);
|
|
88992
|
+
}
|
|
88988
88993
|
if (object.venueId != null)
|
|
88989
88994
|
message.venueId = String(object.venueId);
|
|
88990
88995
|
if (object.createdAt != null)
|
|
@@ -89168,7 +89173,7 @@ $root.Event = (function() {
|
|
|
89168
89173
|
object.name = "";
|
|
89169
89174
|
object.subtitle = "";
|
|
89170
89175
|
object.description = "";
|
|
89171
|
-
object.posterImageUrl =
|
|
89176
|
+
object.posterImageUrl = null;
|
|
89172
89177
|
object.venueId = "";
|
|
89173
89178
|
object.createdAt = 0;
|
|
89174
89179
|
object.publishable = false;
|
|
@@ -89212,7 +89217,7 @@ $root.Event = (function() {
|
|
|
89212
89217
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
89213
89218
|
object.description = message.description;
|
|
89214
89219
|
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
89215
|
-
object.posterImageUrl = message.posterImageUrl;
|
|
89220
|
+
object.posterImageUrl = $root.PosterImageUrl.toObject(message.posterImageUrl, options);
|
|
89216
89221
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
89217
89222
|
object.venueId = message.venueId;
|
|
89218
89223
|
if (message.createdAt != null && message.hasOwnProperty("createdAt"))
|
|
@@ -89340,7 +89345,7 @@ $root.PublicEvent = (function() {
|
|
|
89340
89345
|
* @property {string|null} [name] PublicEvent name
|
|
89341
89346
|
* @property {string|null} [subtitle] PublicEvent subtitle
|
|
89342
89347
|
* @property {string|null} [description] PublicEvent description
|
|
89343
|
-
* @property {
|
|
89348
|
+
* @property {IPosterImageUrl|null} [posterImageUrl] PublicEvent posterImageUrl
|
|
89344
89349
|
* @property {string|null} [venueId] PublicEvent venueId
|
|
89345
89350
|
* @property {number|null} [createdAt] PublicEvent createdAt
|
|
89346
89351
|
* @property {boolean|null} [publishable] PublicEvent publishable
|
|
@@ -89432,11 +89437,11 @@ $root.PublicEvent = (function() {
|
|
|
89432
89437
|
|
|
89433
89438
|
/**
|
|
89434
89439
|
* PublicEvent posterImageUrl.
|
|
89435
|
-
* @member {
|
|
89440
|
+
* @member {IPosterImageUrl|null|undefined} posterImageUrl
|
|
89436
89441
|
* @memberof PublicEvent
|
|
89437
89442
|
* @instance
|
|
89438
89443
|
*/
|
|
89439
|
-
PublicEvent.prototype.posterImageUrl =
|
|
89444
|
+
PublicEvent.prototype.posterImageUrl = null;
|
|
89440
89445
|
|
|
89441
89446
|
/**
|
|
89442
89447
|
* PublicEvent venueId.
|
|
@@ -89659,7 +89664,7 @@ $root.PublicEvent = (function() {
|
|
|
89659
89664
|
if (message.description != null && Object.hasOwnProperty.call(message, "description"))
|
|
89660
89665
|
writer.uint32(/* id 6, wireType 2 =*/50).string(message.description);
|
|
89661
89666
|
if (message.posterImageUrl != null && Object.hasOwnProperty.call(message, "posterImageUrl"))
|
|
89662
|
-
writer.uint32(/* id 7, wireType 2 =*/58).
|
|
89667
|
+
$root.PosterImageUrl.encode(message.posterImageUrl, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
|
|
89663
89668
|
if (message.venueId != null && Object.hasOwnProperty.call(message, "venueId"))
|
|
89664
89669
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.venueId);
|
|
89665
89670
|
if (message.createdAt != null && Object.hasOwnProperty.call(message, "createdAt"))
|
|
@@ -89760,7 +89765,7 @@ $root.PublicEvent = (function() {
|
|
|
89760
89765
|
message.description = reader.string();
|
|
89761
89766
|
break;
|
|
89762
89767
|
case 7:
|
|
89763
|
-
message.posterImageUrl = reader.
|
|
89768
|
+
message.posterImageUrl = $root.PosterImageUrl.decode(reader, reader.uint32());
|
|
89764
89769
|
break;
|
|
89765
89770
|
case 8:
|
|
89766
89771
|
message.venueId = reader.string();
|
|
@@ -89886,9 +89891,11 @@ $root.PublicEvent = (function() {
|
|
|
89886
89891
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
89887
89892
|
if (!$util.isString(message.description))
|
|
89888
89893
|
return "description: string expected";
|
|
89889
|
-
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
89890
|
-
|
|
89891
|
-
|
|
89894
|
+
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl")) {
|
|
89895
|
+
var error = $root.PosterImageUrl.verify(message.posterImageUrl);
|
|
89896
|
+
if (error)
|
|
89897
|
+
return "posterImageUrl." + error;
|
|
89898
|
+
}
|
|
89892
89899
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
89893
89900
|
if (!$util.isString(message.venueId))
|
|
89894
89901
|
return "venueId: string expected";
|
|
@@ -89995,8 +90002,11 @@ $root.PublicEvent = (function() {
|
|
|
89995
90002
|
message.subtitle = String(object.subtitle);
|
|
89996
90003
|
if (object.description != null)
|
|
89997
90004
|
message.description = String(object.description);
|
|
89998
|
-
if (object.posterImageUrl != null)
|
|
89999
|
-
|
|
90005
|
+
if (object.posterImageUrl != null) {
|
|
90006
|
+
if (typeof object.posterImageUrl !== "object")
|
|
90007
|
+
throw TypeError(".PublicEvent.posterImageUrl: object expected");
|
|
90008
|
+
message.posterImageUrl = $root.PosterImageUrl.fromObject(object.posterImageUrl);
|
|
90009
|
+
}
|
|
90000
90010
|
if (object.venueId != null)
|
|
90001
90011
|
message.venueId = String(object.venueId);
|
|
90002
90012
|
if (object.createdAt != null)
|
|
@@ -90082,7 +90092,7 @@ $root.PublicEvent = (function() {
|
|
|
90082
90092
|
object.name = "";
|
|
90083
90093
|
object.subtitle = "";
|
|
90084
90094
|
object.description = "";
|
|
90085
|
-
object.posterImageUrl =
|
|
90095
|
+
object.posterImageUrl = null;
|
|
90086
90096
|
object.venueId = "";
|
|
90087
90097
|
object.createdAt = 0;
|
|
90088
90098
|
object.publishable = false;
|
|
@@ -90119,7 +90129,7 @@ $root.PublicEvent = (function() {
|
|
|
90119
90129
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
90120
90130
|
object.description = message.description;
|
|
90121
90131
|
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
90122
|
-
object.posterImageUrl = message.posterImageUrl;
|
|
90132
|
+
object.posterImageUrl = $root.PosterImageUrl.toObject(message.posterImageUrl, options);
|
|
90123
90133
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
90124
90134
|
object.venueId = message.venueId;
|
|
90125
90135
|
if (message.createdAt != null && message.hasOwnProperty("createdAt"))
|
|
@@ -90496,7 +90506,7 @@ $root.PublicEventDetails = (function() {
|
|
|
90496
90506
|
* @property {string|null} [name] PublicEventDetails name
|
|
90497
90507
|
* @property {string|null} [subtitle] PublicEventDetails subtitle
|
|
90498
90508
|
* @property {string|null} [description] PublicEventDetails description
|
|
90499
|
-
* @property {
|
|
90509
|
+
* @property {IPosterImageUrl|null} [posterImageUrl] PublicEventDetails posterImageUrl
|
|
90500
90510
|
* @property {string|null} [venueId] PublicEventDetails venueId
|
|
90501
90511
|
* @property {number|null} [createdAt] PublicEventDetails createdAt
|
|
90502
90512
|
* @property {boolean|null} [publishable] PublicEventDetails publishable
|
|
@@ -90588,11 +90598,11 @@ $root.PublicEventDetails = (function() {
|
|
|
90588
90598
|
|
|
90589
90599
|
/**
|
|
90590
90600
|
* PublicEventDetails posterImageUrl.
|
|
90591
|
-
* @member {
|
|
90601
|
+
* @member {IPosterImageUrl|null|undefined} posterImageUrl
|
|
90592
90602
|
* @memberof PublicEventDetails
|
|
90593
90603
|
* @instance
|
|
90594
90604
|
*/
|
|
90595
|
-
PublicEventDetails.prototype.posterImageUrl =
|
|
90605
|
+
PublicEventDetails.prototype.posterImageUrl = null;
|
|
90596
90606
|
|
|
90597
90607
|
/**
|
|
90598
90608
|
* PublicEventDetails venueId.
|
|
@@ -90815,7 +90825,7 @@ $root.PublicEventDetails = (function() {
|
|
|
90815
90825
|
if (message.description != null && Object.hasOwnProperty.call(message, "description"))
|
|
90816
90826
|
writer.uint32(/* id 6, wireType 2 =*/50).string(message.description);
|
|
90817
90827
|
if (message.posterImageUrl != null && Object.hasOwnProperty.call(message, "posterImageUrl"))
|
|
90818
|
-
writer.uint32(/* id 7, wireType 2 =*/58).
|
|
90828
|
+
$root.PosterImageUrl.encode(message.posterImageUrl, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
|
|
90819
90829
|
if (message.venueId != null && Object.hasOwnProperty.call(message, "venueId"))
|
|
90820
90830
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.venueId);
|
|
90821
90831
|
if (message.createdAt != null && Object.hasOwnProperty.call(message, "createdAt"))
|
|
@@ -90916,7 +90926,7 @@ $root.PublicEventDetails = (function() {
|
|
|
90916
90926
|
message.description = reader.string();
|
|
90917
90927
|
break;
|
|
90918
90928
|
case 7:
|
|
90919
|
-
message.posterImageUrl = reader.
|
|
90929
|
+
message.posterImageUrl = $root.PosterImageUrl.decode(reader, reader.uint32());
|
|
90920
90930
|
break;
|
|
90921
90931
|
case 8:
|
|
90922
90932
|
message.venueId = reader.string();
|
|
@@ -91042,9 +91052,11 @@ $root.PublicEventDetails = (function() {
|
|
|
91042
91052
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
91043
91053
|
if (!$util.isString(message.description))
|
|
91044
91054
|
return "description: string expected";
|
|
91045
|
-
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
91046
|
-
|
|
91047
|
-
|
|
91055
|
+
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl")) {
|
|
91056
|
+
var error = $root.PosterImageUrl.verify(message.posterImageUrl);
|
|
91057
|
+
if (error)
|
|
91058
|
+
return "posterImageUrl." + error;
|
|
91059
|
+
}
|
|
91048
91060
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
91049
91061
|
if (!$util.isString(message.venueId))
|
|
91050
91062
|
return "venueId: string expected";
|
|
@@ -91155,8 +91167,11 @@ $root.PublicEventDetails = (function() {
|
|
|
91155
91167
|
message.subtitle = String(object.subtitle);
|
|
91156
91168
|
if (object.description != null)
|
|
91157
91169
|
message.description = String(object.description);
|
|
91158
|
-
if (object.posterImageUrl != null)
|
|
91159
|
-
|
|
91170
|
+
if (object.posterImageUrl != null) {
|
|
91171
|
+
if (typeof object.posterImageUrl !== "object")
|
|
91172
|
+
throw TypeError(".PublicEventDetails.posterImageUrl: object expected");
|
|
91173
|
+
message.posterImageUrl = $root.PosterImageUrl.fromObject(object.posterImageUrl);
|
|
91174
|
+
}
|
|
91160
91175
|
if (object.venueId != null)
|
|
91161
91176
|
message.venueId = String(object.venueId);
|
|
91162
91177
|
if (object.createdAt != null)
|
|
@@ -91248,7 +91263,7 @@ $root.PublicEventDetails = (function() {
|
|
|
91248
91263
|
object.name = "";
|
|
91249
91264
|
object.subtitle = "";
|
|
91250
91265
|
object.description = "";
|
|
91251
|
-
object.posterImageUrl =
|
|
91266
|
+
object.posterImageUrl = null;
|
|
91252
91267
|
object.venueId = "";
|
|
91253
91268
|
object.createdAt = 0;
|
|
91254
91269
|
object.publishable = false;
|
|
@@ -91285,7 +91300,7 @@ $root.PublicEventDetails = (function() {
|
|
|
91285
91300
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
91286
91301
|
object.description = message.description;
|
|
91287
91302
|
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
91288
|
-
object.posterImageUrl = message.posterImageUrl;
|
|
91303
|
+
object.posterImageUrl = $root.PosterImageUrl.toObject(message.posterImageUrl, options);
|
|
91289
91304
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
91290
91305
|
object.venueId = message.venueId;
|
|
91291
91306
|
if (message.createdAt != null && message.hasOwnProperty("createdAt"))
|
|
@@ -113351,6 +113366,238 @@ $root.ClearExpiredEventQrCodesResponse = (function() {
|
|
|
113351
113366
|
return ClearExpiredEventQrCodesResponse;
|
|
113352
113367
|
})();
|
|
113353
113368
|
|
|
113369
|
+
$root.PosterImageUrl = (function() {
|
|
113370
|
+
|
|
113371
|
+
/**
|
|
113372
|
+
* Properties of a PosterImageUrl.
|
|
113373
|
+
* @exports IPosterImageUrl
|
|
113374
|
+
* @interface IPosterImageUrl
|
|
113375
|
+
* @property {string|null} [original] PosterImageUrl original
|
|
113376
|
+
* @property {string|null} [medium] PosterImageUrl medium
|
|
113377
|
+
* @property {string|null} [small] PosterImageUrl small
|
|
113378
|
+
*/
|
|
113379
|
+
|
|
113380
|
+
/**
|
|
113381
|
+
* Constructs a new PosterImageUrl.
|
|
113382
|
+
* @exports PosterImageUrl
|
|
113383
|
+
* @classdesc Represents a PosterImageUrl.
|
|
113384
|
+
* @implements IPosterImageUrl
|
|
113385
|
+
* @constructor
|
|
113386
|
+
* @param {IPosterImageUrl=} [properties] Properties to set
|
|
113387
|
+
*/
|
|
113388
|
+
function PosterImageUrl(properties) {
|
|
113389
|
+
if (properties)
|
|
113390
|
+
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
|
113391
|
+
if (properties[keys[i]] != null)
|
|
113392
|
+
this[keys[i]] = properties[keys[i]];
|
|
113393
|
+
}
|
|
113394
|
+
|
|
113395
|
+
/**
|
|
113396
|
+
* PosterImageUrl original.
|
|
113397
|
+
* @member {string} original
|
|
113398
|
+
* @memberof PosterImageUrl
|
|
113399
|
+
* @instance
|
|
113400
|
+
*/
|
|
113401
|
+
PosterImageUrl.prototype.original = "";
|
|
113402
|
+
|
|
113403
|
+
/**
|
|
113404
|
+
* PosterImageUrl medium.
|
|
113405
|
+
* @member {string} medium
|
|
113406
|
+
* @memberof PosterImageUrl
|
|
113407
|
+
* @instance
|
|
113408
|
+
*/
|
|
113409
|
+
PosterImageUrl.prototype.medium = "";
|
|
113410
|
+
|
|
113411
|
+
/**
|
|
113412
|
+
* PosterImageUrl small.
|
|
113413
|
+
* @member {string} small
|
|
113414
|
+
* @memberof PosterImageUrl
|
|
113415
|
+
* @instance
|
|
113416
|
+
*/
|
|
113417
|
+
PosterImageUrl.prototype.small = "";
|
|
113418
|
+
|
|
113419
|
+
/**
|
|
113420
|
+
* Creates a new PosterImageUrl instance using the specified properties.
|
|
113421
|
+
* @function create
|
|
113422
|
+
* @memberof PosterImageUrl
|
|
113423
|
+
* @static
|
|
113424
|
+
* @param {IPosterImageUrl=} [properties] Properties to set
|
|
113425
|
+
* @returns {PosterImageUrl} PosterImageUrl instance
|
|
113426
|
+
*/
|
|
113427
|
+
PosterImageUrl.create = function create(properties) {
|
|
113428
|
+
return new PosterImageUrl(properties);
|
|
113429
|
+
};
|
|
113430
|
+
|
|
113431
|
+
/**
|
|
113432
|
+
* Encodes the specified PosterImageUrl message. Does not implicitly {@link PosterImageUrl.verify|verify} messages.
|
|
113433
|
+
* @function encode
|
|
113434
|
+
* @memberof PosterImageUrl
|
|
113435
|
+
* @static
|
|
113436
|
+
* @param {IPosterImageUrl} message PosterImageUrl message or plain object to encode
|
|
113437
|
+
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
113438
|
+
* @returns {$protobuf.Writer} Writer
|
|
113439
|
+
*/
|
|
113440
|
+
PosterImageUrl.encode = function encode(message, writer) {
|
|
113441
|
+
if (!writer)
|
|
113442
|
+
writer = $Writer.create();
|
|
113443
|
+
if (message.original != null && Object.hasOwnProperty.call(message, "original"))
|
|
113444
|
+
writer.uint32(/* id 0, wireType 2 =*/2).string(message.original);
|
|
113445
|
+
if (message.medium != null && Object.hasOwnProperty.call(message, "medium"))
|
|
113446
|
+
writer.uint32(/* id 1, wireType 2 =*/10).string(message.medium);
|
|
113447
|
+
if (message.small != null && Object.hasOwnProperty.call(message, "small"))
|
|
113448
|
+
writer.uint32(/* id 2, wireType 2 =*/18).string(message.small);
|
|
113449
|
+
return writer;
|
|
113450
|
+
};
|
|
113451
|
+
|
|
113452
|
+
/**
|
|
113453
|
+
* Encodes the specified PosterImageUrl message, length delimited. Does not implicitly {@link PosterImageUrl.verify|verify} messages.
|
|
113454
|
+
* @function encodeDelimited
|
|
113455
|
+
* @memberof PosterImageUrl
|
|
113456
|
+
* @static
|
|
113457
|
+
* @param {IPosterImageUrl} message PosterImageUrl message or plain object to encode
|
|
113458
|
+
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
113459
|
+
* @returns {$protobuf.Writer} Writer
|
|
113460
|
+
*/
|
|
113461
|
+
PosterImageUrl.encodeDelimited = function encodeDelimited(message, writer) {
|
|
113462
|
+
return this.encode(message, writer).ldelim();
|
|
113463
|
+
};
|
|
113464
|
+
|
|
113465
|
+
/**
|
|
113466
|
+
* Decodes a PosterImageUrl message from the specified reader or buffer.
|
|
113467
|
+
* @function decode
|
|
113468
|
+
* @memberof PosterImageUrl
|
|
113469
|
+
* @static
|
|
113470
|
+
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
113471
|
+
* @param {number} [length] Message length if known beforehand
|
|
113472
|
+
* @returns {PosterImageUrl} PosterImageUrl
|
|
113473
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
113474
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
113475
|
+
*/
|
|
113476
|
+
PosterImageUrl.decode = function decode(reader, length) {
|
|
113477
|
+
if (!(reader instanceof $Reader))
|
|
113478
|
+
reader = $Reader.create(reader);
|
|
113479
|
+
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.PosterImageUrl();
|
|
113480
|
+
while (reader.pos < end) {
|
|
113481
|
+
var tag = reader.uint32();
|
|
113482
|
+
switch (tag >>> 3) {
|
|
113483
|
+
case 0:
|
|
113484
|
+
message.original = reader.string();
|
|
113485
|
+
break;
|
|
113486
|
+
case 1:
|
|
113487
|
+
message.medium = reader.string();
|
|
113488
|
+
break;
|
|
113489
|
+
case 2:
|
|
113490
|
+
message.small = reader.string();
|
|
113491
|
+
break;
|
|
113492
|
+
default:
|
|
113493
|
+
reader.skipType(tag & 7);
|
|
113494
|
+
break;
|
|
113495
|
+
}
|
|
113496
|
+
}
|
|
113497
|
+
return message;
|
|
113498
|
+
};
|
|
113499
|
+
|
|
113500
|
+
/**
|
|
113501
|
+
* Decodes a PosterImageUrl message from the specified reader or buffer, length delimited.
|
|
113502
|
+
* @function decodeDelimited
|
|
113503
|
+
* @memberof PosterImageUrl
|
|
113504
|
+
* @static
|
|
113505
|
+
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
113506
|
+
* @returns {PosterImageUrl} PosterImageUrl
|
|
113507
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
113508
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
113509
|
+
*/
|
|
113510
|
+
PosterImageUrl.decodeDelimited = function decodeDelimited(reader) {
|
|
113511
|
+
if (!(reader instanceof $Reader))
|
|
113512
|
+
reader = new $Reader(reader);
|
|
113513
|
+
return this.decode(reader, reader.uint32());
|
|
113514
|
+
};
|
|
113515
|
+
|
|
113516
|
+
/**
|
|
113517
|
+
* Verifies a PosterImageUrl message.
|
|
113518
|
+
* @function verify
|
|
113519
|
+
* @memberof PosterImageUrl
|
|
113520
|
+
* @static
|
|
113521
|
+
* @param {Object.<string,*>} message Plain object to verify
|
|
113522
|
+
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
|
113523
|
+
*/
|
|
113524
|
+
PosterImageUrl.verify = function verify(message) {
|
|
113525
|
+
if (typeof message !== "object" || message === null)
|
|
113526
|
+
return "object expected";
|
|
113527
|
+
if (message.original != null && message.hasOwnProperty("original"))
|
|
113528
|
+
if (!$util.isString(message.original))
|
|
113529
|
+
return "original: string expected";
|
|
113530
|
+
if (message.medium != null && message.hasOwnProperty("medium"))
|
|
113531
|
+
if (!$util.isString(message.medium))
|
|
113532
|
+
return "medium: string expected";
|
|
113533
|
+
if (message.small != null && message.hasOwnProperty("small"))
|
|
113534
|
+
if (!$util.isString(message.small))
|
|
113535
|
+
return "small: string expected";
|
|
113536
|
+
return null;
|
|
113537
|
+
};
|
|
113538
|
+
|
|
113539
|
+
/**
|
|
113540
|
+
* Creates a PosterImageUrl message from a plain object. Also converts values to their respective internal types.
|
|
113541
|
+
* @function fromObject
|
|
113542
|
+
* @memberof PosterImageUrl
|
|
113543
|
+
* @static
|
|
113544
|
+
* @param {Object.<string,*>} object Plain object
|
|
113545
|
+
* @returns {PosterImageUrl} PosterImageUrl
|
|
113546
|
+
*/
|
|
113547
|
+
PosterImageUrl.fromObject = function fromObject(object) {
|
|
113548
|
+
if (object instanceof $root.PosterImageUrl)
|
|
113549
|
+
return object;
|
|
113550
|
+
var message = new $root.PosterImageUrl();
|
|
113551
|
+
if (object.original != null)
|
|
113552
|
+
message.original = String(object.original);
|
|
113553
|
+
if (object.medium != null)
|
|
113554
|
+
message.medium = String(object.medium);
|
|
113555
|
+
if (object.small != null)
|
|
113556
|
+
message.small = String(object.small);
|
|
113557
|
+
return message;
|
|
113558
|
+
};
|
|
113559
|
+
|
|
113560
|
+
/**
|
|
113561
|
+
* Creates a plain object from a PosterImageUrl message. Also converts values to other types if specified.
|
|
113562
|
+
* @function toObject
|
|
113563
|
+
* @memberof PosterImageUrl
|
|
113564
|
+
* @static
|
|
113565
|
+
* @param {PosterImageUrl} message PosterImageUrl
|
|
113566
|
+
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
|
113567
|
+
* @returns {Object.<string,*>} Plain object
|
|
113568
|
+
*/
|
|
113569
|
+
PosterImageUrl.toObject = function toObject(message, options) {
|
|
113570
|
+
if (!options)
|
|
113571
|
+
options = {};
|
|
113572
|
+
var object = {};
|
|
113573
|
+
if (options.defaults) {
|
|
113574
|
+
object.original = "";
|
|
113575
|
+
object.medium = "";
|
|
113576
|
+
object.small = "";
|
|
113577
|
+
}
|
|
113578
|
+
if (message.original != null && message.hasOwnProperty("original"))
|
|
113579
|
+
object.original = message.original;
|
|
113580
|
+
if (message.medium != null && message.hasOwnProperty("medium"))
|
|
113581
|
+
object.medium = message.medium;
|
|
113582
|
+
if (message.small != null && message.hasOwnProperty("small"))
|
|
113583
|
+
object.small = message.small;
|
|
113584
|
+
return object;
|
|
113585
|
+
};
|
|
113586
|
+
|
|
113587
|
+
/**
|
|
113588
|
+
* Converts this PosterImageUrl to JSON.
|
|
113589
|
+
* @function toJSON
|
|
113590
|
+
* @memberof PosterImageUrl
|
|
113591
|
+
* @instance
|
|
113592
|
+
* @returns {Object.<string,*>} JSON object
|
|
113593
|
+
*/
|
|
113594
|
+
PosterImageUrl.prototype.toJSON = function toJSON() {
|
|
113595
|
+
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
|
|
113596
|
+
};
|
|
113597
|
+
|
|
113598
|
+
return PosterImageUrl;
|
|
113599
|
+
})();
|
|
113600
|
+
|
|
113354
113601
|
$root.EventService = (function() {
|
|
113355
113602
|
|
|
113356
113603
|
/**
|
|
@@ -128982,6 +129229,7 @@ $root.UploadFileRequest = (function() {
|
|
|
128982
129229
|
* @property {Array.<IFile>|null} [files] UploadFileRequest files
|
|
128983
129230
|
* @property {string|null} [userId] UploadFileRequest userId
|
|
128984
129231
|
* @property {boolean|null} [gzip] UploadFileRequest gzip
|
|
129232
|
+
* @property {boolean|null} [isMultiImage] UploadFileRequest isMultiImage
|
|
128985
129233
|
*/
|
|
128986
129234
|
|
|
128987
129235
|
/**
|
|
@@ -129040,6 +129288,14 @@ $root.UploadFileRequest = (function() {
|
|
|
129040
129288
|
*/
|
|
129041
129289
|
UploadFileRequest.prototype.gzip = false;
|
|
129042
129290
|
|
|
129291
|
+
/**
|
|
129292
|
+
* UploadFileRequest isMultiImage.
|
|
129293
|
+
* @member {boolean} isMultiImage
|
|
129294
|
+
* @memberof UploadFileRequest
|
|
129295
|
+
* @instance
|
|
129296
|
+
*/
|
|
129297
|
+
UploadFileRequest.prototype.isMultiImage = false;
|
|
129298
|
+
|
|
129043
129299
|
/**
|
|
129044
129300
|
* Creates a new UploadFileRequest instance using the specified properties.
|
|
129045
129301
|
* @function create
|
|
@@ -129075,6 +129331,8 @@ $root.UploadFileRequest = (function() {
|
|
|
129075
129331
|
writer.uint32(/* id 3, wireType 2 =*/26).string(message.userId);
|
|
129076
129332
|
if (message.gzip != null && Object.hasOwnProperty.call(message, "gzip"))
|
|
129077
129333
|
writer.uint32(/* id 4, wireType 0 =*/32).bool(message.gzip);
|
|
129334
|
+
if (message.isMultiImage != null && Object.hasOwnProperty.call(message, "isMultiImage"))
|
|
129335
|
+
writer.uint32(/* id 5, wireType 0 =*/40).bool(message.isMultiImage);
|
|
129078
129336
|
return writer;
|
|
129079
129337
|
};
|
|
129080
129338
|
|
|
@@ -129126,6 +129384,9 @@ $root.UploadFileRequest = (function() {
|
|
|
129126
129384
|
case 4:
|
|
129127
129385
|
message.gzip = reader.bool();
|
|
129128
129386
|
break;
|
|
129387
|
+
case 5:
|
|
129388
|
+
message.isMultiImage = reader.bool();
|
|
129389
|
+
break;
|
|
129129
129390
|
default:
|
|
129130
129391
|
reader.skipType(tag & 7);
|
|
129131
129392
|
break;
|
|
@@ -129182,6 +129443,9 @@ $root.UploadFileRequest = (function() {
|
|
|
129182
129443
|
if (message.gzip != null && message.hasOwnProperty("gzip"))
|
|
129183
129444
|
if (typeof message.gzip !== "boolean")
|
|
129184
129445
|
return "gzip: boolean expected";
|
|
129446
|
+
if (message.isMultiImage != null && message.hasOwnProperty("isMultiImage"))
|
|
129447
|
+
if (typeof message.isMultiImage !== "boolean")
|
|
129448
|
+
return "isMultiImage: boolean expected";
|
|
129185
129449
|
return null;
|
|
129186
129450
|
};
|
|
129187
129451
|
|
|
@@ -129215,6 +129479,8 @@ $root.UploadFileRequest = (function() {
|
|
|
129215
129479
|
message.userId = String(object.userId);
|
|
129216
129480
|
if (object.gzip != null)
|
|
129217
129481
|
message.gzip = Boolean(object.gzip);
|
|
129482
|
+
if (object.isMultiImage != null)
|
|
129483
|
+
message.isMultiImage = Boolean(object.isMultiImage);
|
|
129218
129484
|
return message;
|
|
129219
129485
|
};
|
|
129220
129486
|
|
|
@@ -129238,6 +129504,7 @@ $root.UploadFileRequest = (function() {
|
|
|
129238
129504
|
object.orgId = "";
|
|
129239
129505
|
object.userId = "";
|
|
129240
129506
|
object.gzip = false;
|
|
129507
|
+
object.isMultiImage = false;
|
|
129241
129508
|
}
|
|
129242
129509
|
if (message.spanContext != null && message.hasOwnProperty("spanContext"))
|
|
129243
129510
|
object.spanContext = message.spanContext;
|
|
@@ -129252,6 +129519,8 @@ $root.UploadFileRequest = (function() {
|
|
|
129252
129519
|
object.userId = message.userId;
|
|
129253
129520
|
if (message.gzip != null && message.hasOwnProperty("gzip"))
|
|
129254
129521
|
object.gzip = message.gzip;
|
|
129522
|
+
if (message.isMultiImage != null && message.hasOwnProperty("isMultiImage"))
|
|
129523
|
+
object.isMultiImage = message.isMultiImage;
|
|
129255
129524
|
return object;
|
|
129256
129525
|
};
|
|
129257
129526
|
|
|
@@ -138735,7 +139004,7 @@ $root.Season = (function() {
|
|
|
138735
139004
|
* @property {string|null} [name] Season name
|
|
138736
139005
|
* @property {string|null} [subtitle] Season subtitle
|
|
138737
139006
|
* @property {string|null} [description] Season description
|
|
138738
|
-
* @property {
|
|
139007
|
+
* @property {IPosterImageUrl|null} [posterImageUrl] Season posterImageUrl
|
|
138739
139008
|
* @property {string|null} [venueId] Season venueId
|
|
138740
139009
|
* @property {number|null} [createdAt] Season createdAt
|
|
138741
139010
|
* @property {boolean|null} [publishable] Season publishable
|
|
@@ -138836,11 +139105,11 @@ $root.Season = (function() {
|
|
|
138836
139105
|
|
|
138837
139106
|
/**
|
|
138838
139107
|
* Season posterImageUrl.
|
|
138839
|
-
* @member {
|
|
139108
|
+
* @member {IPosterImageUrl|null|undefined} posterImageUrl
|
|
138840
139109
|
* @memberof Season
|
|
138841
139110
|
* @instance
|
|
138842
139111
|
*/
|
|
138843
|
-
Season.prototype.posterImageUrl =
|
|
139112
|
+
Season.prototype.posterImageUrl = null;
|
|
138844
139113
|
|
|
138845
139114
|
/**
|
|
138846
139115
|
* Season venueId.
|
|
@@ -139087,7 +139356,7 @@ $root.Season = (function() {
|
|
|
139087
139356
|
if (message.description != null && Object.hasOwnProperty.call(message, "description"))
|
|
139088
139357
|
writer.uint32(/* id 6, wireType 2 =*/50).string(message.description);
|
|
139089
139358
|
if (message.posterImageUrl != null && Object.hasOwnProperty.call(message, "posterImageUrl"))
|
|
139090
|
-
writer.uint32(/* id 7, wireType 2 =*/58).
|
|
139359
|
+
$root.PosterImageUrl.encode(message.posterImageUrl, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
|
|
139091
139360
|
if (message.venueId != null && Object.hasOwnProperty.call(message, "venueId"))
|
|
139092
139361
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.venueId);
|
|
139093
139362
|
if (message.createdAt != null && Object.hasOwnProperty.call(message, "createdAt"))
|
|
@@ -139200,7 +139469,7 @@ $root.Season = (function() {
|
|
|
139200
139469
|
message.description = reader.string();
|
|
139201
139470
|
break;
|
|
139202
139471
|
case 7:
|
|
139203
|
-
message.posterImageUrl = reader.
|
|
139472
|
+
message.posterImageUrl = $root.PosterImageUrl.decode(reader, reader.uint32());
|
|
139204
139473
|
break;
|
|
139205
139474
|
case 8:
|
|
139206
139475
|
message.venueId = reader.string();
|
|
@@ -139347,9 +139616,11 @@ $root.Season = (function() {
|
|
|
139347
139616
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
139348
139617
|
if (!$util.isString(message.description))
|
|
139349
139618
|
return "description: string expected";
|
|
139350
|
-
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
139351
|
-
|
|
139352
|
-
|
|
139619
|
+
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl")) {
|
|
139620
|
+
var error = $root.PosterImageUrl.verify(message.posterImageUrl);
|
|
139621
|
+
if (error)
|
|
139622
|
+
return "posterImageUrl." + error;
|
|
139623
|
+
}
|
|
139353
139624
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
139354
139625
|
if (!$util.isString(message.venueId))
|
|
139355
139626
|
return "venueId: string expected";
|
|
@@ -139503,8 +139774,11 @@ $root.Season = (function() {
|
|
|
139503
139774
|
message.subtitle = String(object.subtitle);
|
|
139504
139775
|
if (object.description != null)
|
|
139505
139776
|
message.description = String(object.description);
|
|
139506
|
-
if (object.posterImageUrl != null)
|
|
139507
|
-
|
|
139777
|
+
if (object.posterImageUrl != null) {
|
|
139778
|
+
if (typeof object.posterImageUrl !== "object")
|
|
139779
|
+
throw TypeError(".Season.posterImageUrl: object expected");
|
|
139780
|
+
message.posterImageUrl = $root.PosterImageUrl.fromObject(object.posterImageUrl);
|
|
139781
|
+
}
|
|
139508
139782
|
if (object.venueId != null)
|
|
139509
139783
|
message.venueId = String(object.venueId);
|
|
139510
139784
|
if (object.createdAt != null)
|
|
@@ -139654,7 +139928,7 @@ $root.Season = (function() {
|
|
|
139654
139928
|
object.name = "";
|
|
139655
139929
|
object.subtitle = "";
|
|
139656
139930
|
object.description = "";
|
|
139657
|
-
object.posterImageUrl =
|
|
139931
|
+
object.posterImageUrl = null;
|
|
139658
139932
|
object.venueId = "";
|
|
139659
139933
|
object.createdAt = 0;
|
|
139660
139934
|
object.publishable = false;
|
|
@@ -139688,7 +139962,7 @@ $root.Season = (function() {
|
|
|
139688
139962
|
if (message.description != null && message.hasOwnProperty("description"))
|
|
139689
139963
|
object.description = message.description;
|
|
139690
139964
|
if (message.posterImageUrl != null && message.hasOwnProperty("posterImageUrl"))
|
|
139691
|
-
object.posterImageUrl = message.posterImageUrl;
|
|
139965
|
+
object.posterImageUrl = $root.PosterImageUrl.toObject(message.posterImageUrl, options);
|
|
139692
139966
|
if (message.venueId != null && message.hasOwnProperty("venueId"))
|
|
139693
139967
|
object.venueId = message.venueId;
|
|
139694
139968
|
if (message.createdAt != null && message.hasOwnProperty("createdAt"))
|