@sellout/models 0.0.330 → 0.0.334

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.
@@ -13168,8 +13168,8 @@ $root.Order = (function() {
13168
13168
  * @property {string|null} [discountCode] Order discountCode
13169
13169
  * @property {number|null} [discountAmount] Order discountAmount
13170
13170
  * @property {Array.<IOrderIntegrationResponse>|null} [orderIntegrationResponse] Order orderIntegrationResponse
13171
- * @property {string|null} [userAgreement] Order userAgreement
13172
13171
  * @property {string|null} [parentOrderId] Order parentOrderId
13172
+ * @property {Array.<ISharingOrderInfo>|null} [sharing] Order sharing
13173
13173
  */
13174
13174
 
13175
13175
  /**
@@ -13191,6 +13191,7 @@ $root.Order = (function() {
13191
13191
  this.payments = [];
13192
13192
  this.fees = [];
13193
13193
  this.orderIntegrationResponse = [];
13194
+ this.sharing = [];
13194
13195
  if (properties)
13195
13196
  for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
13196
13197
  if (properties[keys[i]] != null)
@@ -13494,20 +13495,20 @@ $root.Order = (function() {
13494
13495
  Order.prototype.orderIntegrationResponse = $util.emptyArray;
13495
13496
 
13496
13497
  /**
13497
- * Order userAgreement.
13498
- * @member {string} userAgreement
13498
+ * Order parentOrderId.
13499
+ * @member {string} parentOrderId
13499
13500
  * @memberof Order
13500
13501
  * @instance
13501
13502
  */
13502
- Order.prototype.userAgreement = "";
13503
+ Order.prototype.parentOrderId = "";
13503
13504
 
13504
13505
  /**
13505
- * Order parentOrderId.
13506
- * @member {string} parentOrderId
13506
+ * Order sharing.
13507
+ * @member {Array.<ISharingOrderInfo>} sharing
13507
13508
  * @memberof Order
13508
13509
  * @instance
13509
13510
  */
13510
- Order.prototype.parentOrderId = "";
13511
+ Order.prototype.sharing = $util.emptyArray;
13511
13512
 
13512
13513
  /**
13513
13514
  * Creates a new Order instance using the specified properties.
@@ -13617,10 +13618,11 @@ $root.Order = (function() {
13617
13618
  if (message.orderIntegrationResponse != null && message.orderIntegrationResponse.length)
13618
13619
  for (var i = 0; i < message.orderIntegrationResponse.length; ++i)
13619
13620
  $root.OrderIntegrationResponse.encode(message.orderIntegrationResponse[i], writer.uint32(/* id 36, wireType 2 =*/290).fork()).ldelim();
13620
- if (message.userAgreement != null && Object.hasOwnProperty.call(message, "userAgreement"))
13621
- writer.uint32(/* id 37, wireType 2 =*/298).string(message.userAgreement);
13622
13621
  if (message.parentOrderId != null && Object.hasOwnProperty.call(message, "parentOrderId"))
13623
- writer.uint32(/* id 38, wireType 2 =*/306).string(message.parentOrderId);
13622
+ writer.uint32(/* id 37, wireType 2 =*/298).string(message.parentOrderId);
13623
+ if (message.sharing != null && message.sharing.length)
13624
+ for (var i = 0; i < message.sharing.length; ++i)
13625
+ $root.SharingOrderInfo.encode(message.sharing[i], writer.uint32(/* id 38, wireType 2 =*/306).fork()).ldelim();
13624
13626
  return writer;
13625
13627
  };
13626
13628
 
@@ -13787,10 +13789,12 @@ $root.Order = (function() {
13787
13789
  message.orderIntegrationResponse.push($root.OrderIntegrationResponse.decode(reader, reader.uint32()));
13788
13790
  break;
13789
13791
  case 37:
13790
- message.userAgreement = reader.string();
13792
+ message.parentOrderId = reader.string();
13791
13793
  break;
13792
13794
  case 38:
13793
- message.parentOrderId = reader.string();
13795
+ if (!(message.sharing && message.sharing.length))
13796
+ message.sharing = [];
13797
+ message.sharing.push($root.SharingOrderInfo.decode(reader, reader.uint32()));
13794
13798
  break;
13795
13799
  default:
13796
13800
  reader.skipType(tag & 7);
@@ -13996,12 +14000,18 @@ $root.Order = (function() {
13996
14000
  return "orderIntegrationResponse." + error;
13997
14001
  }
13998
14002
  }
13999
- if (message.userAgreement != null && message.hasOwnProperty("userAgreement"))
14000
- if (!$util.isString(message.userAgreement))
14001
- return "userAgreement: string expected";
14002
14003
  if (message.parentOrderId != null && message.hasOwnProperty("parentOrderId"))
14003
14004
  if (!$util.isString(message.parentOrderId))
14004
14005
  return "parentOrderId: string expected";
14006
+ if (message.sharing != null && message.hasOwnProperty("sharing")) {
14007
+ if (!Array.isArray(message.sharing))
14008
+ return "sharing: array expected";
14009
+ for (var i = 0; i < message.sharing.length; ++i) {
14010
+ var error = $root.SharingOrderInfo.verify(message.sharing[i]);
14011
+ if (error)
14012
+ return "sharing." + error;
14013
+ }
14014
+ }
14005
14015
  return null;
14006
14016
  };
14007
14017
 
@@ -14168,10 +14178,18 @@ $root.Order = (function() {
14168
14178
  message.orderIntegrationResponse[i] = $root.OrderIntegrationResponse.fromObject(object.orderIntegrationResponse[i]);
14169
14179
  }
14170
14180
  }
14171
- if (object.userAgreement != null)
14172
- message.userAgreement = String(object.userAgreement);
14173
14181
  if (object.parentOrderId != null)
14174
14182
  message.parentOrderId = String(object.parentOrderId);
14183
+ if (object.sharing) {
14184
+ if (!Array.isArray(object.sharing))
14185
+ throw TypeError(".Order.sharing: array expected");
14186
+ message.sharing = [];
14187
+ for (var i = 0; i < object.sharing.length; ++i) {
14188
+ if (typeof object.sharing[i] !== "object")
14189
+ throw TypeError(".Order.sharing: object expected");
14190
+ message.sharing[i] = $root.SharingOrderInfo.fromObject(object.sharing[i]);
14191
+ }
14192
+ }
14175
14193
  return message;
14176
14194
  };
14177
14195
 
@@ -14199,6 +14217,7 @@ $root.Order = (function() {
14199
14217
  object.payments = [];
14200
14218
  object.fees = [];
14201
14219
  object.orderIntegrationResponse = [];
14220
+ object.sharing = [];
14202
14221
  }
14203
14222
  if (options.defaults) {
14204
14223
  object._id = "";
@@ -14228,7 +14247,6 @@ $root.Order = (function() {
14228
14247
  object.email = "";
14229
14248
  object.discountCode = "";
14230
14249
  object.discountAmount = 0;
14231
- object.userAgreement = "";
14232
14250
  object.parentOrderId = "";
14233
14251
  }
14234
14252
  if (message._id != null && message.hasOwnProperty("_id"))
@@ -14335,10 +14353,13 @@ $root.Order = (function() {
14335
14353
  for (var j = 0; j < message.orderIntegrationResponse.length; ++j)
14336
14354
  object.orderIntegrationResponse[j] = $root.OrderIntegrationResponse.toObject(message.orderIntegrationResponse[j], options);
14337
14355
  }
14338
- if (message.userAgreement != null && message.hasOwnProperty("userAgreement"))
14339
- object.userAgreement = message.userAgreement;
14340
14356
  if (message.parentOrderId != null && message.hasOwnProperty("parentOrderId"))
14341
14357
  object.parentOrderId = message.parentOrderId;
14358
+ if (message.sharing && message.sharing.length) {
14359
+ object.sharing = [];
14360
+ for (var j = 0; j < message.sharing.length; ++j)
14361
+ object.sharing[j] = $root.SharingOrderInfo.toObject(message.sharing[j], options);
14362
+ }
14342
14363
  return object;
14343
14364
  };
14344
14365
 
@@ -25148,8 +25169,9 @@ $root.UpdateOrderParams = (function() {
25148
25169
  * @interface IUpdateOrderParams
25149
25170
  * @property {string|null} [orderId] UpdateOrderParams orderId
25150
25171
  * @property {string|null} [ticketId] UpdateOrderParams ticketId
25151
- * @property {Array.<IScan>|null} [scan] UpdateOrderParams scan
25172
+ * @property {boolean|null} [scan] UpdateOrderParams scan
25152
25173
  * @property {string|null} [email] UpdateOrderParams email
25174
+ * @property {string|null} [upgradeId] UpdateOrderParams upgradeId
25153
25175
  */
25154
25176
 
25155
25177
  /**
@@ -25161,7 +25183,6 @@ $root.UpdateOrderParams = (function() {
25161
25183
  * @param {IUpdateOrderParams=} [properties] Properties to set
25162
25184
  */
25163
25185
  function UpdateOrderParams(properties) {
25164
- this.scan = [];
25165
25186
  if (properties)
25166
25187
  for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
25167
25188
  if (properties[keys[i]] != null)
@@ -25186,11 +25207,11 @@ $root.UpdateOrderParams = (function() {
25186
25207
 
25187
25208
  /**
25188
25209
  * UpdateOrderParams scan.
25189
- * @member {Array.<IScan>} scan
25210
+ * @member {boolean} scan
25190
25211
  * @memberof UpdateOrderParams
25191
25212
  * @instance
25192
25213
  */
25193
- UpdateOrderParams.prototype.scan = $util.emptyArray;
25214
+ UpdateOrderParams.prototype.scan = false;
25194
25215
 
25195
25216
  /**
25196
25217
  * UpdateOrderParams email.
@@ -25200,6 +25221,14 @@ $root.UpdateOrderParams = (function() {
25200
25221
  */
25201
25222
  UpdateOrderParams.prototype.email = "";
25202
25223
 
25224
+ /**
25225
+ * UpdateOrderParams upgradeId.
25226
+ * @member {string} upgradeId
25227
+ * @memberof UpdateOrderParams
25228
+ * @instance
25229
+ */
25230
+ UpdateOrderParams.prototype.upgradeId = "";
25231
+
25203
25232
  /**
25204
25233
  * Creates a new UpdateOrderParams instance using the specified properties.
25205
25234
  * @function create
@@ -25228,11 +25257,12 @@ $root.UpdateOrderParams = (function() {
25228
25257
  writer.uint32(/* id 0, wireType 2 =*/2).string(message.orderId);
25229
25258
  if (message.ticketId != null && Object.hasOwnProperty.call(message, "ticketId"))
25230
25259
  writer.uint32(/* id 1, wireType 2 =*/10).string(message.ticketId);
25231
- if (message.scan != null && message.scan.length)
25232
- for (var i = 0; i < message.scan.length; ++i)
25233
- $root.Scan.encode(message.scan[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
25260
+ if (message.scan != null && Object.hasOwnProperty.call(message, "scan"))
25261
+ writer.uint32(/* id 2, wireType 0 =*/16).bool(message.scan);
25234
25262
  if (message.email != null && Object.hasOwnProperty.call(message, "email"))
25235
25263
  writer.uint32(/* id 3, wireType 2 =*/26).string(message.email);
25264
+ if (message.upgradeId != null && Object.hasOwnProperty.call(message, "upgradeId"))
25265
+ writer.uint32(/* id 4, wireType 2 =*/34).string(message.upgradeId);
25236
25266
  return writer;
25237
25267
  };
25238
25268
 
@@ -25274,13 +25304,14 @@ $root.UpdateOrderParams = (function() {
25274
25304
  message.ticketId = reader.string();
25275
25305
  break;
25276
25306
  case 2:
25277
- if (!(message.scan && message.scan.length))
25278
- message.scan = [];
25279
- message.scan.push($root.Scan.decode(reader, reader.uint32()));
25307
+ message.scan = reader.bool();
25280
25308
  break;
25281
25309
  case 3:
25282
25310
  message.email = reader.string();
25283
25311
  break;
25312
+ case 4:
25313
+ message.upgradeId = reader.string();
25314
+ break;
25284
25315
  default:
25285
25316
  reader.skipType(tag & 7);
25286
25317
  break;
@@ -25322,18 +25353,15 @@ $root.UpdateOrderParams = (function() {
25322
25353
  if (message.ticketId != null && message.hasOwnProperty("ticketId"))
25323
25354
  if (!$util.isString(message.ticketId))
25324
25355
  return "ticketId: string expected";
25325
- if (message.scan != null && message.hasOwnProperty("scan")) {
25326
- if (!Array.isArray(message.scan))
25327
- return "scan: array expected";
25328
- for (var i = 0; i < message.scan.length; ++i) {
25329
- var error = $root.Scan.verify(message.scan[i]);
25330
- if (error)
25331
- return "scan." + error;
25332
- }
25333
- }
25356
+ if (message.scan != null && message.hasOwnProperty("scan"))
25357
+ if (typeof message.scan !== "boolean")
25358
+ return "scan: boolean expected";
25334
25359
  if (message.email != null && message.hasOwnProperty("email"))
25335
25360
  if (!$util.isString(message.email))
25336
25361
  return "email: string expected";
25362
+ if (message.upgradeId != null && message.hasOwnProperty("upgradeId"))
25363
+ if (!$util.isString(message.upgradeId))
25364
+ return "upgradeId: string expected";
25337
25365
  return null;
25338
25366
  };
25339
25367
 
@@ -25353,18 +25381,12 @@ $root.UpdateOrderParams = (function() {
25353
25381
  message.orderId = String(object.orderId);
25354
25382
  if (object.ticketId != null)
25355
25383
  message.ticketId = String(object.ticketId);
25356
- if (object.scan) {
25357
- if (!Array.isArray(object.scan))
25358
- throw TypeError(".UpdateOrderParams.scan: array expected");
25359
- message.scan = [];
25360
- for (var i = 0; i < object.scan.length; ++i) {
25361
- if (typeof object.scan[i] !== "object")
25362
- throw TypeError(".UpdateOrderParams.scan: object expected");
25363
- message.scan[i] = $root.Scan.fromObject(object.scan[i]);
25364
- }
25365
- }
25384
+ if (object.scan != null)
25385
+ message.scan = Boolean(object.scan);
25366
25386
  if (object.email != null)
25367
25387
  message.email = String(object.email);
25388
+ if (object.upgradeId != null)
25389
+ message.upgradeId = String(object.upgradeId);
25368
25390
  return message;
25369
25391
  };
25370
25392
 
@@ -25381,24 +25403,23 @@ $root.UpdateOrderParams = (function() {
25381
25403
  if (!options)
25382
25404
  options = {};
25383
25405
  var object = {};
25384
- if (options.arrays || options.defaults)
25385
- object.scan = [];
25386
25406
  if (options.defaults) {
25387
25407
  object.orderId = "";
25388
25408
  object.ticketId = "";
25409
+ object.scan = false;
25389
25410
  object.email = "";
25411
+ object.upgradeId = "";
25390
25412
  }
25391
25413
  if (message.orderId != null && message.hasOwnProperty("orderId"))
25392
25414
  object.orderId = message.orderId;
25393
25415
  if (message.ticketId != null && message.hasOwnProperty("ticketId"))
25394
25416
  object.ticketId = message.ticketId;
25395
- if (message.scan && message.scan.length) {
25396
- object.scan = [];
25397
- for (var j = 0; j < message.scan.length; ++j)
25398
- object.scan[j] = $root.Scan.toObject(message.scan[j], options);
25399
- }
25417
+ if (message.scan != null && message.hasOwnProperty("scan"))
25418
+ object.scan = message.scan;
25400
25419
  if (message.email != null && message.hasOwnProperty("email"))
25401
25420
  object.email = message.email;
25421
+ if (message.upgradeId != null && message.hasOwnProperty("upgradeId"))
25422
+ object.upgradeId = message.upgradeId;
25402
25423
  return object;
25403
25424
  };
25404
25425
 
@@ -30529,6 +30550,7 @@ $root.ScanOrderRequest = (function() {
30529
30550
  * @property {Array.<string>|null} [ticketIds] ScanOrderRequest ticketIds
30530
30551
  * @property {Array.<string>|null} [upgradeIds] ScanOrderRequest upgradeIds
30531
30552
  * @property {string|null} [scannedBy] ScanOrderRequest scannedBy
30553
+ * @property {string|null} [orgId] ScanOrderRequest orgId
30532
30554
  */
30533
30555
 
30534
30556
  /**
@@ -30588,6 +30610,14 @@ $root.ScanOrderRequest = (function() {
30588
30610
  */
30589
30611
  ScanOrderRequest.prototype.scannedBy = "";
30590
30612
 
30613
+ /**
30614
+ * ScanOrderRequest orgId.
30615
+ * @member {string} orgId
30616
+ * @memberof ScanOrderRequest
30617
+ * @instance
30618
+ */
30619
+ ScanOrderRequest.prototype.orgId = "";
30620
+
30591
30621
  /**
30592
30622
  * Creates a new ScanOrderRequest instance using the specified properties.
30593
30623
  * @function create
@@ -30624,6 +30654,8 @@ $root.ScanOrderRequest = (function() {
30624
30654
  writer.uint32(/* id 3, wireType 2 =*/26).string(message.upgradeIds[i]);
30625
30655
  if (message.scannedBy != null && Object.hasOwnProperty.call(message, "scannedBy"))
30626
30656
  writer.uint32(/* id 4, wireType 2 =*/34).string(message.scannedBy);
30657
+ if (message.orgId != null && Object.hasOwnProperty.call(message, "orgId"))
30658
+ writer.uint32(/* id 5, wireType 2 =*/42).string(message.orgId);
30627
30659
  return writer;
30628
30660
  };
30629
30661
 
@@ -30677,6 +30709,9 @@ $root.ScanOrderRequest = (function() {
30677
30709
  case 4:
30678
30710
  message.scannedBy = reader.string();
30679
30711
  break;
30712
+ case 5:
30713
+ message.orgId = reader.string();
30714
+ break;
30680
30715
  default:
30681
30716
  reader.skipType(tag & 7);
30682
30717
  break;
@@ -30735,6 +30770,9 @@ $root.ScanOrderRequest = (function() {
30735
30770
  if (message.scannedBy != null && message.hasOwnProperty("scannedBy"))
30736
30771
  if (!$util.isString(message.scannedBy))
30737
30772
  return "scannedBy: string expected";
30773
+ if (message.orgId != null && message.hasOwnProperty("orgId"))
30774
+ if (!$util.isString(message.orgId))
30775
+ return "orgId: string expected";
30738
30776
  return null;
30739
30777
  };
30740
30778
 
@@ -30770,6 +30808,8 @@ $root.ScanOrderRequest = (function() {
30770
30808
  }
30771
30809
  if (object.scannedBy != null)
30772
30810
  message.scannedBy = String(object.scannedBy);
30811
+ if (object.orgId != null)
30812
+ message.orgId = String(object.orgId);
30773
30813
  return message;
30774
30814
  };
30775
30815
 
@@ -30794,6 +30834,7 @@ $root.ScanOrderRequest = (function() {
30794
30834
  object.spanContext = "";
30795
30835
  object.orderId = "";
30796
30836
  object.scannedBy = "";
30837
+ object.orgId = "";
30797
30838
  }
30798
30839
  if (message.spanContext != null && message.hasOwnProperty("spanContext"))
30799
30840
  object.spanContext = message.spanContext;
@@ -30811,6 +30852,8 @@ $root.ScanOrderRequest = (function() {
30811
30852
  }
30812
30853
  if (message.scannedBy != null && message.hasOwnProperty("scannedBy"))
30813
30854
  object.scannedBy = message.scannedBy;
30855
+ if (message.orgId != null && message.hasOwnProperty("orgId"))
30856
+ object.orgId = message.orgId;
30814
30857
  return object;
30815
30858
  };
30816
30859
 
@@ -31736,6 +31779,7 @@ $root.OrderQuery = (function() {
31736
31779
  * @property {number|null} [endDate] OrderQuery endDate
31737
31780
  * @property {boolean|null} [any] OrderQuery any
31738
31781
  * @property {Array.<string>|null} [seasonIds] OrderQuery seasonIds
31782
+ * @property {boolean|null} [isCustomerScreen] OrderQuery isCustomerScreen
31739
31783
  */
31740
31784
 
31741
31785
  /**
@@ -31857,6 +31901,14 @@ $root.OrderQuery = (function() {
31857
31901
  */
31858
31902
  OrderQuery.prototype.seasonIds = $util.emptyArray;
31859
31903
 
31904
+ /**
31905
+ * OrderQuery isCustomerScreen.
31906
+ * @member {boolean} isCustomerScreen
31907
+ * @memberof OrderQuery
31908
+ * @instance
31909
+ */
31910
+ OrderQuery.prototype.isCustomerScreen = false;
31911
+
31860
31912
  /**
31861
31913
  * Creates a new OrderQuery instance using the specified properties.
31862
31914
  * @function create
@@ -31913,6 +31965,8 @@ $root.OrderQuery = (function() {
31913
31965
  if (message.seasonIds != null && message.seasonIds.length)
31914
31966
  for (var i = 0; i < message.seasonIds.length; ++i)
31915
31967
  writer.uint32(/* id 11, wireType 2 =*/90).string(message.seasonIds[i]);
31968
+ if (message.isCustomerScreen != null && Object.hasOwnProperty.call(message, "isCustomerScreen"))
31969
+ writer.uint32(/* id 12, wireType 0 =*/96).bool(message.isCustomerScreen);
31916
31970
  return writer;
31917
31971
  };
31918
31972
 
@@ -31999,6 +32053,9 @@ $root.OrderQuery = (function() {
31999
32053
  message.seasonIds = [];
32000
32054
  message.seasonIds.push(reader.string());
32001
32055
  break;
32056
+ case 12:
32057
+ message.isCustomerScreen = reader.bool();
32058
+ break;
32002
32059
  default:
32003
32060
  reader.skipType(tag & 7);
32004
32061
  break;
@@ -32102,6 +32159,9 @@ $root.OrderQuery = (function() {
32102
32159
  if (!$util.isString(message.seasonIds[i]))
32103
32160
  return "seasonIds: string[] expected";
32104
32161
  }
32162
+ if (message.isCustomerScreen != null && message.hasOwnProperty("isCustomerScreen"))
32163
+ if (typeof message.isCustomerScreen !== "boolean")
32164
+ return "isCustomerScreen: boolean expected";
32105
32165
  return null;
32106
32166
  };
32107
32167
 
@@ -32181,6 +32241,8 @@ $root.OrderQuery = (function() {
32181
32241
  for (var i = 0; i < object.seasonIds.length; ++i)
32182
32242
  message.seasonIds[i] = String(object.seasonIds[i]);
32183
32243
  }
32244
+ if (object.isCustomerScreen != null)
32245
+ message.isCustomerScreen = Boolean(object.isCustomerScreen);
32184
32246
  return message;
32185
32247
  };
32186
32248
 
@@ -32212,6 +32274,7 @@ $root.OrderQuery = (function() {
32212
32274
  object.startDate = 0;
32213
32275
  object.endDate = 0;
32214
32276
  object.any = false;
32277
+ object.isCustomerScreen = false;
32215
32278
  }
32216
32279
  if (message.orderIds && message.orderIds.length) {
32217
32280
  object.orderIds = [];
@@ -32261,6 +32324,8 @@ $root.OrderQuery = (function() {
32261
32324
  for (var j = 0; j < message.seasonIds.length; ++j)
32262
32325
  object.seasonIds[j] = message.seasonIds[j];
32263
32326
  }
32327
+ if (message.isCustomerScreen != null && message.hasOwnProperty("isCustomerScreen"))
32328
+ object.isCustomerScreen = message.isCustomerScreen;
32264
32329
  return object;
32265
32330
  };
32266
32331
 
@@ -32895,6 +32960,9 @@ $root.FindOrderByIdRequest = (function() {
32895
32960
  * @interface IFindOrderByIdRequest
32896
32961
  * @property {string|null} [spanContext] FindOrderByIdRequest spanContext
32897
32962
  * @property {string|null} [orderId] FindOrderByIdRequest orderId
32963
+ * @property {string|null} [orgId] FindOrderByIdRequest orgId
32964
+ * @property {boolean|null} [isAppTicketScan] FindOrderByIdRequest isAppTicketScan
32965
+ * @property {string|null} [eventId] FindOrderByIdRequest eventId
32898
32966
  */
32899
32967
 
32900
32968
  /**
@@ -32928,6 +32996,30 @@ $root.FindOrderByIdRequest = (function() {
32928
32996
  */
32929
32997
  FindOrderByIdRequest.prototype.orderId = "";
32930
32998
 
32999
+ /**
33000
+ * FindOrderByIdRequest orgId.
33001
+ * @member {string} orgId
33002
+ * @memberof FindOrderByIdRequest
33003
+ * @instance
33004
+ */
33005
+ FindOrderByIdRequest.prototype.orgId = "";
33006
+
33007
+ /**
33008
+ * FindOrderByIdRequest isAppTicketScan.
33009
+ * @member {boolean} isAppTicketScan
33010
+ * @memberof FindOrderByIdRequest
33011
+ * @instance
33012
+ */
33013
+ FindOrderByIdRequest.prototype.isAppTicketScan = false;
33014
+
33015
+ /**
33016
+ * FindOrderByIdRequest eventId.
33017
+ * @member {string} eventId
33018
+ * @memberof FindOrderByIdRequest
33019
+ * @instance
33020
+ */
33021
+ FindOrderByIdRequest.prototype.eventId = "";
33022
+
32931
33023
  /**
32932
33024
  * Creates a new FindOrderByIdRequest instance using the specified properties.
32933
33025
  * @function create
@@ -32956,6 +33048,12 @@ $root.FindOrderByIdRequest = (function() {
32956
33048
  writer.uint32(/* id 0, wireType 2 =*/2).string(message.spanContext);
32957
33049
  if (message.orderId != null && Object.hasOwnProperty.call(message, "orderId"))
32958
33050
  writer.uint32(/* id 1, wireType 2 =*/10).string(message.orderId);
33051
+ if (message.orgId != null && Object.hasOwnProperty.call(message, "orgId"))
33052
+ writer.uint32(/* id 2, wireType 2 =*/18).string(message.orgId);
33053
+ if (message.isAppTicketScan != null && Object.hasOwnProperty.call(message, "isAppTicketScan"))
33054
+ writer.uint32(/* id 3, wireType 0 =*/24).bool(message.isAppTicketScan);
33055
+ if (message.eventId != null && Object.hasOwnProperty.call(message, "eventId"))
33056
+ writer.uint32(/* id 4, wireType 2 =*/34).string(message.eventId);
32959
33057
  return writer;
32960
33058
  };
32961
33059
 
@@ -32996,6 +33094,15 @@ $root.FindOrderByIdRequest = (function() {
32996
33094
  case 1:
32997
33095
  message.orderId = reader.string();
32998
33096
  break;
33097
+ case 2:
33098
+ message.orgId = reader.string();
33099
+ break;
33100
+ case 3:
33101
+ message.isAppTicketScan = reader.bool();
33102
+ break;
33103
+ case 4:
33104
+ message.eventId = reader.string();
33105
+ break;
32999
33106
  default:
33000
33107
  reader.skipType(tag & 7);
33001
33108
  break;
@@ -33037,6 +33144,15 @@ $root.FindOrderByIdRequest = (function() {
33037
33144
  if (message.orderId != null && message.hasOwnProperty("orderId"))
33038
33145
  if (!$util.isString(message.orderId))
33039
33146
  return "orderId: string expected";
33147
+ if (message.orgId != null && message.hasOwnProperty("orgId"))
33148
+ if (!$util.isString(message.orgId))
33149
+ return "orgId: string expected";
33150
+ if (message.isAppTicketScan != null && message.hasOwnProperty("isAppTicketScan"))
33151
+ if (typeof message.isAppTicketScan !== "boolean")
33152
+ return "isAppTicketScan: boolean expected";
33153
+ if (message.eventId != null && message.hasOwnProperty("eventId"))
33154
+ if (!$util.isString(message.eventId))
33155
+ return "eventId: string expected";
33040
33156
  return null;
33041
33157
  };
33042
33158
 
@@ -33056,6 +33172,12 @@ $root.FindOrderByIdRequest = (function() {
33056
33172
  message.spanContext = String(object.spanContext);
33057
33173
  if (object.orderId != null)
33058
33174
  message.orderId = String(object.orderId);
33175
+ if (object.orgId != null)
33176
+ message.orgId = String(object.orgId);
33177
+ if (object.isAppTicketScan != null)
33178
+ message.isAppTicketScan = Boolean(object.isAppTicketScan);
33179
+ if (object.eventId != null)
33180
+ message.eventId = String(object.eventId);
33059
33181
  return message;
33060
33182
  };
33061
33183
 
@@ -33075,11 +33197,20 @@ $root.FindOrderByIdRequest = (function() {
33075
33197
  if (options.defaults) {
33076
33198
  object.spanContext = "";
33077
33199
  object.orderId = "";
33200
+ object.orgId = "";
33201
+ object.isAppTicketScan = false;
33202
+ object.eventId = "";
33078
33203
  }
33079
33204
  if (message.spanContext != null && message.hasOwnProperty("spanContext"))
33080
33205
  object.spanContext = message.spanContext;
33081
33206
  if (message.orderId != null && message.hasOwnProperty("orderId"))
33082
33207
  object.orderId = message.orderId;
33208
+ if (message.orgId != null && message.hasOwnProperty("orgId"))
33209
+ object.orgId = message.orgId;
33210
+ if (message.isAppTicketScan != null && message.hasOwnProperty("isAppTicketScan"))
33211
+ object.isAppTicketScan = message.isAppTicketScan;
33212
+ if (message.eventId != null && message.hasOwnProperty("eventId"))
33213
+ object.eventId = message.eventId;
33083
33214
  return object;
33084
33215
  };
33085
33216
 
@@ -41297,6 +41428,9 @@ $root.SharingOrderInfo = (function() {
41297
41428
  * @property {Array.<string>|null} [upgrades] SharingOrderInfo upgrades
41298
41429
  * @property {string|null} [eventName] SharingOrderInfo eventName
41299
41430
  * @property {string|null} [_id] SharingOrderInfo _id
41431
+ * @property {string|null} [status] SharingOrderInfo status
41432
+ * @property {string|null} [orderId] SharingOrderInfo orderId
41433
+ * @property {IShareOrderTimestamp|null} [shareTimestamp] SharingOrderInfo shareTimestamp
41300
41434
  */
41301
41435
 
41302
41436
  /**
@@ -41364,6 +41498,30 @@ $root.SharingOrderInfo = (function() {
41364
41498
  */
41365
41499
  SharingOrderInfo.prototype._id = "";
41366
41500
 
41501
+ /**
41502
+ * SharingOrderInfo status.
41503
+ * @member {string} status
41504
+ * @memberof SharingOrderInfo
41505
+ * @instance
41506
+ */
41507
+ SharingOrderInfo.prototype.status = "";
41508
+
41509
+ /**
41510
+ * SharingOrderInfo orderId.
41511
+ * @member {string} orderId
41512
+ * @memberof SharingOrderInfo
41513
+ * @instance
41514
+ */
41515
+ SharingOrderInfo.prototype.orderId = "";
41516
+
41517
+ /**
41518
+ * SharingOrderInfo shareTimestamp.
41519
+ * @member {IShareOrderTimestamp|null|undefined} shareTimestamp
41520
+ * @memberof SharingOrderInfo
41521
+ * @instance
41522
+ */
41523
+ SharingOrderInfo.prototype.shareTimestamp = null;
41524
+
41367
41525
  /**
41368
41526
  * Creates a new SharingOrderInfo instance using the specified properties.
41369
41527
  * @function create
@@ -41399,9 +41557,15 @@ $root.SharingOrderInfo = (function() {
41399
41557
  for (var i = 0; i < message.upgrades.length; ++i)
41400
41558
  writer.uint32(/* id 3, wireType 2 =*/26).string(message.upgrades[i]);
41401
41559
  if (message.eventName != null && Object.hasOwnProperty.call(message, "eventName"))
41402
- writer.uint32(/* id 5, wireType 2 =*/42).string(message.eventName);
41560
+ writer.uint32(/* id 4, wireType 2 =*/34).string(message.eventName);
41403
41561
  if (message._id != null && Object.hasOwnProperty.call(message, "_id"))
41404
- writer.uint32(/* id 6, wireType 2 =*/50).string(message._id);
41562
+ writer.uint32(/* id 5, wireType 2 =*/42).string(message._id);
41563
+ if (message.status != null && Object.hasOwnProperty.call(message, "status"))
41564
+ writer.uint32(/* id 6, wireType 2 =*/50).string(message.status);
41565
+ if (message.orderId != null && Object.hasOwnProperty.call(message, "orderId"))
41566
+ writer.uint32(/* id 7, wireType 2 =*/58).string(message.orderId);
41567
+ if (message.shareTimestamp != null && Object.hasOwnProperty.call(message, "shareTimestamp"))
41568
+ $root.ShareOrderTimestamp.encode(message.shareTimestamp, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim();
41405
41569
  return writer;
41406
41570
  };
41407
41571
 
@@ -41452,12 +41616,21 @@ $root.SharingOrderInfo = (function() {
41452
41616
  message.upgrades = [];
41453
41617
  message.upgrades.push(reader.string());
41454
41618
  break;
41455
- case 5:
41619
+ case 4:
41456
41620
  message.eventName = reader.string();
41457
41621
  break;
41458
- case 6:
41622
+ case 5:
41459
41623
  message._id = reader.string();
41460
41624
  break;
41625
+ case 6:
41626
+ message.status = reader.string();
41627
+ break;
41628
+ case 7:
41629
+ message.orderId = reader.string();
41630
+ break;
41631
+ case 8:
41632
+ message.shareTimestamp = $root.ShareOrderTimestamp.decode(reader, reader.uint32());
41633
+ break;
41461
41634
  default:
41462
41635
  reader.skipType(tag & 7);
41463
41636
  break;
@@ -41519,6 +41692,17 @@ $root.SharingOrderInfo = (function() {
41519
41692
  if (message._id != null && message.hasOwnProperty("_id"))
41520
41693
  if (!$util.isString(message._id))
41521
41694
  return "_id: string expected";
41695
+ if (message.status != null && message.hasOwnProperty("status"))
41696
+ if (!$util.isString(message.status))
41697
+ return "status: string expected";
41698
+ if (message.orderId != null && message.hasOwnProperty("orderId"))
41699
+ if (!$util.isString(message.orderId))
41700
+ return "orderId: string expected";
41701
+ if (message.shareTimestamp != null && message.hasOwnProperty("shareTimestamp")) {
41702
+ var error = $root.ShareOrderTimestamp.verify(message.shareTimestamp);
41703
+ if (error)
41704
+ return "shareTimestamp." + error;
41705
+ }
41522
41706
  return null;
41523
41707
  };
41524
41708
 
@@ -41556,6 +41740,15 @@ $root.SharingOrderInfo = (function() {
41556
41740
  message.eventName = String(object.eventName);
41557
41741
  if (object._id != null)
41558
41742
  message._id = String(object._id);
41743
+ if (object.status != null)
41744
+ message.status = String(object.status);
41745
+ if (object.orderId != null)
41746
+ message.orderId = String(object.orderId);
41747
+ if (object.shareTimestamp != null) {
41748
+ if (typeof object.shareTimestamp !== "object")
41749
+ throw TypeError(".SharingOrderInfo.shareTimestamp: object expected");
41750
+ message.shareTimestamp = $root.ShareOrderTimestamp.fromObject(object.shareTimestamp);
41751
+ }
41559
41752
  return message;
41560
41753
  };
41561
41754
 
@@ -41581,6 +41774,9 @@ $root.SharingOrderInfo = (function() {
41581
41774
  object.phoneNumber = "";
41582
41775
  object.eventName = "";
41583
41776
  object._id = "";
41777
+ object.status = "";
41778
+ object.orderId = "";
41779
+ object.shareTimestamp = null;
41584
41780
  }
41585
41781
  if (message.email != null && message.hasOwnProperty("email"))
41586
41782
  object.email = message.email;
@@ -41600,6 +41796,12 @@ $root.SharingOrderInfo = (function() {
41600
41796
  object.eventName = message.eventName;
41601
41797
  if (message._id != null && message.hasOwnProperty("_id"))
41602
41798
  object._id = message._id;
41799
+ if (message.status != null && message.hasOwnProperty("status"))
41800
+ object.status = message.status;
41801
+ if (message.orderId != null && message.hasOwnProperty("orderId"))
41802
+ object.orderId = message.orderId;
41803
+ if (message.shareTimestamp != null && message.hasOwnProperty("shareTimestamp"))
41804
+ object.shareTimestamp = $root.ShareOrderTimestamp.toObject(message.shareTimestamp, options);
41603
41805
  return object;
41604
41806
  };
41605
41807
 
@@ -41617,6 +41819,260 @@ $root.SharingOrderInfo = (function() {
41617
41819
  return SharingOrderInfo;
41618
41820
  })();
41619
41821
 
41822
+ $root.ShareOrderTimestamp = (function() {
41823
+
41824
+ /**
41825
+ * Properties of a ShareOrderTimestamp.
41826
+ * @exports IShareOrderTimestamp
41827
+ * @interface IShareOrderTimestamp
41828
+ * @property {number|null} [offeredTime] ShareOrderTimestamp offeredTime
41829
+ * @property {number|null} [acceptedTime] ShareOrderTimestamp acceptedTime
41830
+ * @property {number|null} [cancelledTime] ShareOrderTimestamp cancelledTime
41831
+ * @property {number|null} [rejectedTime] ShareOrderTimestamp rejectedTime
41832
+ */
41833
+
41834
+ /**
41835
+ * Constructs a new ShareOrderTimestamp.
41836
+ * @exports ShareOrderTimestamp
41837
+ * @classdesc Represents a ShareOrderTimestamp.
41838
+ * @implements IShareOrderTimestamp
41839
+ * @constructor
41840
+ * @param {IShareOrderTimestamp=} [properties] Properties to set
41841
+ */
41842
+ function ShareOrderTimestamp(properties) {
41843
+ if (properties)
41844
+ for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
41845
+ if (properties[keys[i]] != null)
41846
+ this[keys[i]] = properties[keys[i]];
41847
+ }
41848
+
41849
+ /**
41850
+ * ShareOrderTimestamp offeredTime.
41851
+ * @member {number} offeredTime
41852
+ * @memberof ShareOrderTimestamp
41853
+ * @instance
41854
+ */
41855
+ ShareOrderTimestamp.prototype.offeredTime = 0;
41856
+
41857
+ /**
41858
+ * ShareOrderTimestamp acceptedTime.
41859
+ * @member {number} acceptedTime
41860
+ * @memberof ShareOrderTimestamp
41861
+ * @instance
41862
+ */
41863
+ ShareOrderTimestamp.prototype.acceptedTime = 0;
41864
+
41865
+ /**
41866
+ * ShareOrderTimestamp cancelledTime.
41867
+ * @member {number} cancelledTime
41868
+ * @memberof ShareOrderTimestamp
41869
+ * @instance
41870
+ */
41871
+ ShareOrderTimestamp.prototype.cancelledTime = 0;
41872
+
41873
+ /**
41874
+ * ShareOrderTimestamp rejectedTime.
41875
+ * @member {number} rejectedTime
41876
+ * @memberof ShareOrderTimestamp
41877
+ * @instance
41878
+ */
41879
+ ShareOrderTimestamp.prototype.rejectedTime = 0;
41880
+
41881
+ /**
41882
+ * Creates a new ShareOrderTimestamp instance using the specified properties.
41883
+ * @function create
41884
+ * @memberof ShareOrderTimestamp
41885
+ * @static
41886
+ * @param {IShareOrderTimestamp=} [properties] Properties to set
41887
+ * @returns {ShareOrderTimestamp} ShareOrderTimestamp instance
41888
+ */
41889
+ ShareOrderTimestamp.create = function create(properties) {
41890
+ return new ShareOrderTimestamp(properties);
41891
+ };
41892
+
41893
+ /**
41894
+ * Encodes the specified ShareOrderTimestamp message. Does not implicitly {@link ShareOrderTimestamp.verify|verify} messages.
41895
+ * @function encode
41896
+ * @memberof ShareOrderTimestamp
41897
+ * @static
41898
+ * @param {IShareOrderTimestamp} message ShareOrderTimestamp message or plain object to encode
41899
+ * @param {$protobuf.Writer} [writer] Writer to encode to
41900
+ * @returns {$protobuf.Writer} Writer
41901
+ */
41902
+ ShareOrderTimestamp.encode = function encode(message, writer) {
41903
+ if (!writer)
41904
+ writer = $Writer.create();
41905
+ if (message.offeredTime != null && Object.hasOwnProperty.call(message, "offeredTime"))
41906
+ writer.uint32(/* id 0, wireType 0 =*/0).int32(message.offeredTime);
41907
+ if (message.acceptedTime != null && Object.hasOwnProperty.call(message, "acceptedTime"))
41908
+ writer.uint32(/* id 1, wireType 0 =*/8).int32(message.acceptedTime);
41909
+ if (message.cancelledTime != null && Object.hasOwnProperty.call(message, "cancelledTime"))
41910
+ writer.uint32(/* id 2, wireType 0 =*/16).int32(message.cancelledTime);
41911
+ if (message.rejectedTime != null && Object.hasOwnProperty.call(message, "rejectedTime"))
41912
+ writer.uint32(/* id 3, wireType 0 =*/24).int32(message.rejectedTime);
41913
+ return writer;
41914
+ };
41915
+
41916
+ /**
41917
+ * Encodes the specified ShareOrderTimestamp message, length delimited. Does not implicitly {@link ShareOrderTimestamp.verify|verify} messages.
41918
+ * @function encodeDelimited
41919
+ * @memberof ShareOrderTimestamp
41920
+ * @static
41921
+ * @param {IShareOrderTimestamp} message ShareOrderTimestamp message or plain object to encode
41922
+ * @param {$protobuf.Writer} [writer] Writer to encode to
41923
+ * @returns {$protobuf.Writer} Writer
41924
+ */
41925
+ ShareOrderTimestamp.encodeDelimited = function encodeDelimited(message, writer) {
41926
+ return this.encode(message, writer).ldelim();
41927
+ };
41928
+
41929
+ /**
41930
+ * Decodes a ShareOrderTimestamp message from the specified reader or buffer.
41931
+ * @function decode
41932
+ * @memberof ShareOrderTimestamp
41933
+ * @static
41934
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
41935
+ * @param {number} [length] Message length if known beforehand
41936
+ * @returns {ShareOrderTimestamp} ShareOrderTimestamp
41937
+ * @throws {Error} If the payload is not a reader or valid buffer
41938
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
41939
+ */
41940
+ ShareOrderTimestamp.decode = function decode(reader, length) {
41941
+ if (!(reader instanceof $Reader))
41942
+ reader = $Reader.create(reader);
41943
+ var end = length === undefined ? reader.len : reader.pos + length, message = new $root.ShareOrderTimestamp();
41944
+ while (reader.pos < end) {
41945
+ var tag = reader.uint32();
41946
+ switch (tag >>> 3) {
41947
+ case 0:
41948
+ message.offeredTime = reader.int32();
41949
+ break;
41950
+ case 1:
41951
+ message.acceptedTime = reader.int32();
41952
+ break;
41953
+ case 2:
41954
+ message.cancelledTime = reader.int32();
41955
+ break;
41956
+ case 3:
41957
+ message.rejectedTime = reader.int32();
41958
+ break;
41959
+ default:
41960
+ reader.skipType(tag & 7);
41961
+ break;
41962
+ }
41963
+ }
41964
+ return message;
41965
+ };
41966
+
41967
+ /**
41968
+ * Decodes a ShareOrderTimestamp message from the specified reader or buffer, length delimited.
41969
+ * @function decodeDelimited
41970
+ * @memberof ShareOrderTimestamp
41971
+ * @static
41972
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
41973
+ * @returns {ShareOrderTimestamp} ShareOrderTimestamp
41974
+ * @throws {Error} If the payload is not a reader or valid buffer
41975
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
41976
+ */
41977
+ ShareOrderTimestamp.decodeDelimited = function decodeDelimited(reader) {
41978
+ if (!(reader instanceof $Reader))
41979
+ reader = new $Reader(reader);
41980
+ return this.decode(reader, reader.uint32());
41981
+ };
41982
+
41983
+ /**
41984
+ * Verifies a ShareOrderTimestamp message.
41985
+ * @function verify
41986
+ * @memberof ShareOrderTimestamp
41987
+ * @static
41988
+ * @param {Object.<string,*>} message Plain object to verify
41989
+ * @returns {string|null} `null` if valid, otherwise the reason why it is not
41990
+ */
41991
+ ShareOrderTimestamp.verify = function verify(message) {
41992
+ if (typeof message !== "object" || message === null)
41993
+ return "object expected";
41994
+ if (message.offeredTime != null && message.hasOwnProperty("offeredTime"))
41995
+ if (!$util.isInteger(message.offeredTime))
41996
+ return "offeredTime: integer expected";
41997
+ if (message.acceptedTime != null && message.hasOwnProperty("acceptedTime"))
41998
+ if (!$util.isInteger(message.acceptedTime))
41999
+ return "acceptedTime: integer expected";
42000
+ if (message.cancelledTime != null && message.hasOwnProperty("cancelledTime"))
42001
+ if (!$util.isInteger(message.cancelledTime))
42002
+ return "cancelledTime: integer expected";
42003
+ if (message.rejectedTime != null && message.hasOwnProperty("rejectedTime"))
42004
+ if (!$util.isInteger(message.rejectedTime))
42005
+ return "rejectedTime: integer expected";
42006
+ return null;
42007
+ };
42008
+
42009
+ /**
42010
+ * Creates a ShareOrderTimestamp message from a plain object. Also converts values to their respective internal types.
42011
+ * @function fromObject
42012
+ * @memberof ShareOrderTimestamp
42013
+ * @static
42014
+ * @param {Object.<string,*>} object Plain object
42015
+ * @returns {ShareOrderTimestamp} ShareOrderTimestamp
42016
+ */
42017
+ ShareOrderTimestamp.fromObject = function fromObject(object) {
42018
+ if (object instanceof $root.ShareOrderTimestamp)
42019
+ return object;
42020
+ var message = new $root.ShareOrderTimestamp();
42021
+ if (object.offeredTime != null)
42022
+ message.offeredTime = object.offeredTime | 0;
42023
+ if (object.acceptedTime != null)
42024
+ message.acceptedTime = object.acceptedTime | 0;
42025
+ if (object.cancelledTime != null)
42026
+ message.cancelledTime = object.cancelledTime | 0;
42027
+ if (object.rejectedTime != null)
42028
+ message.rejectedTime = object.rejectedTime | 0;
42029
+ return message;
42030
+ };
42031
+
42032
+ /**
42033
+ * Creates a plain object from a ShareOrderTimestamp message. Also converts values to other types if specified.
42034
+ * @function toObject
42035
+ * @memberof ShareOrderTimestamp
42036
+ * @static
42037
+ * @param {ShareOrderTimestamp} message ShareOrderTimestamp
42038
+ * @param {$protobuf.IConversionOptions} [options] Conversion options
42039
+ * @returns {Object.<string,*>} Plain object
42040
+ */
42041
+ ShareOrderTimestamp.toObject = function toObject(message, options) {
42042
+ if (!options)
42043
+ options = {};
42044
+ var object = {};
42045
+ if (options.defaults) {
42046
+ object.offeredTime = 0;
42047
+ object.acceptedTime = 0;
42048
+ object.cancelledTime = 0;
42049
+ object.rejectedTime = 0;
42050
+ }
42051
+ if (message.offeredTime != null && message.hasOwnProperty("offeredTime"))
42052
+ object.offeredTime = message.offeredTime;
42053
+ if (message.acceptedTime != null && message.hasOwnProperty("acceptedTime"))
42054
+ object.acceptedTime = message.acceptedTime;
42055
+ if (message.cancelledTime != null && message.hasOwnProperty("cancelledTime"))
42056
+ object.cancelledTime = message.cancelledTime;
42057
+ if (message.rejectedTime != null && message.hasOwnProperty("rejectedTime"))
42058
+ object.rejectedTime = message.rejectedTime;
42059
+ return object;
42060
+ };
42061
+
42062
+ /**
42063
+ * Converts this ShareOrderTimestamp to JSON.
42064
+ * @function toJSON
42065
+ * @memberof ShareOrderTimestamp
42066
+ * @instance
42067
+ * @returns {Object.<string,*>} JSON object
42068
+ */
42069
+ ShareOrderTimestamp.prototype.toJSON = function toJSON() {
42070
+ return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
42071
+ };
42072
+
42073
+ return ShareOrderTimestamp;
42074
+ })();
42075
+
41620
42076
  $root.OrderService = (function() {
41621
42077
 
41622
42078
  /**