@sellout/models 0.0.310 → 0.0.312
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 +0 -22
- package/package.json +3 -3
- package/src/proto/order.proto +0 -1
package/.dist/sellout-proto.js
CHANGED
|
@@ -14325,7 +14325,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14325
14325
|
* @property {string|null} [actionType] OrderIntegrationResponse actionType
|
|
14326
14326
|
* @property {number|null} [createdAt] OrderIntegrationResponse createdAt
|
|
14327
14327
|
* @property {string|null} [orderType] OrderIntegrationResponse orderType
|
|
14328
|
-
* @property {string|null} [_id] OrderIntegrationResponse _id
|
|
14329
14328
|
*/
|
|
14330
14329
|
|
|
14331
14330
|
/**
|
|
@@ -14399,14 +14398,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14399
14398
|
*/
|
|
14400
14399
|
OrderIntegrationResponse.prototype.orderType = "";
|
|
14401
14400
|
|
|
14402
|
-
/**
|
|
14403
|
-
* OrderIntegrationResponse _id.
|
|
14404
|
-
* @member {string} _id
|
|
14405
|
-
* @memberof OrderIntegrationResponse
|
|
14406
|
-
* @instance
|
|
14407
|
-
*/
|
|
14408
|
-
OrderIntegrationResponse.prototype._id = "";
|
|
14409
|
-
|
|
14410
14401
|
/**
|
|
14411
14402
|
* Creates a new OrderIntegrationResponse instance using the specified properties.
|
|
14412
14403
|
* @function create
|
|
@@ -14445,8 +14436,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14445
14436
|
writer.uint32(/* id 5, wireType 0 =*/40).int32(message.createdAt);
|
|
14446
14437
|
if (message.orderType != null && Object.hasOwnProperty.call(message, "orderType"))
|
|
14447
14438
|
writer.uint32(/* id 6, wireType 2 =*/50).string(message.orderType);
|
|
14448
|
-
if (message._id != null && Object.hasOwnProperty.call(message, "_id"))
|
|
14449
|
-
writer.uint32(/* id 7, wireType 2 =*/58).string(message._id);
|
|
14450
14439
|
return writer;
|
|
14451
14440
|
};
|
|
14452
14441
|
|
|
@@ -14502,9 +14491,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14502
14491
|
case 6:
|
|
14503
14492
|
message.orderType = reader.string();
|
|
14504
14493
|
break;
|
|
14505
|
-
case 7:
|
|
14506
|
-
message._id = reader.string();
|
|
14507
|
-
break;
|
|
14508
14494
|
default:
|
|
14509
14495
|
reader.skipType(tag & 7);
|
|
14510
14496
|
break;
|
|
@@ -14561,9 +14547,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14561
14547
|
if (message.orderType != null && message.hasOwnProperty("orderType"))
|
|
14562
14548
|
if (!$util.isString(message.orderType))
|
|
14563
14549
|
return "orderType: string expected";
|
|
14564
|
-
if (message._id != null && message.hasOwnProperty("_id"))
|
|
14565
|
-
if (!$util.isString(message._id))
|
|
14566
|
-
return "_id: string expected";
|
|
14567
14550
|
return null;
|
|
14568
14551
|
};
|
|
14569
14552
|
|
|
@@ -14593,8 +14576,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14593
14576
|
message.createdAt = object.createdAt | 0;
|
|
14594
14577
|
if (object.orderType != null)
|
|
14595
14578
|
message.orderType = String(object.orderType);
|
|
14596
|
-
if (object._id != null)
|
|
14597
|
-
message._id = String(object._id);
|
|
14598
14579
|
return message;
|
|
14599
14580
|
};
|
|
14600
14581
|
|
|
@@ -14619,7 +14600,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14619
14600
|
object.actionType = "";
|
|
14620
14601
|
object.createdAt = 0;
|
|
14621
14602
|
object.orderType = "";
|
|
14622
|
-
object._id = "";
|
|
14623
14603
|
}
|
|
14624
14604
|
if (message.success != null && message.hasOwnProperty("success"))
|
|
14625
14605
|
object.success = message.success;
|
|
@@ -14635,8 +14615,6 @@ $root.OrderIntegrationResponse = (function() {
|
|
|
14635
14615
|
object.createdAt = message.createdAt;
|
|
14636
14616
|
if (message.orderType != null && message.hasOwnProperty("orderType"))
|
|
14637
14617
|
object.orderType = message.orderType;
|
|
14638
|
-
if (message._id != null && message.hasOwnProperty("_id"))
|
|
14639
|
-
object._id = message._id;
|
|
14640
14618
|
return object;
|
|
14641
14619
|
};
|
|
14642
14620
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellout/models",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.312",
|
|
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.312",
|
|
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": "bf430946089822af57dd319c93dddb2541a52178"
|
|
36
36
|
}
|