@sellout/models 0.0.389 → 0.0.390
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/stripe.proto +1 -0
package/.dist/sellout-proto.js
CHANGED
|
@@ -164995,6 +164995,7 @@ $root.CancelStripePaymentIntentRequest = (function() {
|
|
|
164995
164995
|
* @interface ICancelStripePaymentIntentRequest
|
|
164996
164996
|
* @property {string|null} [spanContext] CancelStripePaymentIntentRequest spanContext
|
|
164997
164997
|
* @property {string|null} [paymentIntentId] CancelStripePaymentIntentRequest paymentIntentId
|
|
164998
|
+
* @property {string|null} [orgId] CancelStripePaymentIntentRequest orgId
|
|
164998
164999
|
*/
|
|
164999
165000
|
|
|
165000
165001
|
/**
|
|
@@ -165028,6 +165029,14 @@ $root.CancelStripePaymentIntentRequest = (function() {
|
|
|
165028
165029
|
*/
|
|
165029
165030
|
CancelStripePaymentIntentRequest.prototype.paymentIntentId = "";
|
|
165030
165031
|
|
|
165032
|
+
/**
|
|
165033
|
+
* CancelStripePaymentIntentRequest orgId.
|
|
165034
|
+
* @member {string} orgId
|
|
165035
|
+
* @memberof CancelStripePaymentIntentRequest
|
|
165036
|
+
* @instance
|
|
165037
|
+
*/
|
|
165038
|
+
CancelStripePaymentIntentRequest.prototype.orgId = "";
|
|
165039
|
+
|
|
165031
165040
|
/**
|
|
165032
165041
|
* Creates a new CancelStripePaymentIntentRequest instance using the specified properties.
|
|
165033
165042
|
* @function create
|
|
@@ -165056,6 +165065,8 @@ $root.CancelStripePaymentIntentRequest = (function() {
|
|
|
165056
165065
|
writer.uint32(/* id 0, wireType 2 =*/2).string(message.spanContext);
|
|
165057
165066
|
if (message.paymentIntentId != null && Object.hasOwnProperty.call(message, "paymentIntentId"))
|
|
165058
165067
|
writer.uint32(/* id 1, wireType 2 =*/10).string(message.paymentIntentId);
|
|
165068
|
+
if (message.orgId != null && Object.hasOwnProperty.call(message, "orgId"))
|
|
165069
|
+
writer.uint32(/* id 2, wireType 2 =*/18).string(message.orgId);
|
|
165059
165070
|
return writer;
|
|
165060
165071
|
};
|
|
165061
165072
|
|
|
@@ -165096,6 +165107,9 @@ $root.CancelStripePaymentIntentRequest = (function() {
|
|
|
165096
165107
|
case 1:
|
|
165097
165108
|
message.paymentIntentId = reader.string();
|
|
165098
165109
|
break;
|
|
165110
|
+
case 2:
|
|
165111
|
+
message.orgId = reader.string();
|
|
165112
|
+
break;
|
|
165099
165113
|
default:
|
|
165100
165114
|
reader.skipType(tag & 7);
|
|
165101
165115
|
break;
|
|
@@ -165137,6 +165151,9 @@ $root.CancelStripePaymentIntentRequest = (function() {
|
|
|
165137
165151
|
if (message.paymentIntentId != null && message.hasOwnProperty("paymentIntentId"))
|
|
165138
165152
|
if (!$util.isString(message.paymentIntentId))
|
|
165139
165153
|
return "paymentIntentId: string expected";
|
|
165154
|
+
if (message.orgId != null && message.hasOwnProperty("orgId"))
|
|
165155
|
+
if (!$util.isString(message.orgId))
|
|
165156
|
+
return "orgId: string expected";
|
|
165140
165157
|
return null;
|
|
165141
165158
|
};
|
|
165142
165159
|
|
|
@@ -165156,6 +165173,8 @@ $root.CancelStripePaymentIntentRequest = (function() {
|
|
|
165156
165173
|
message.spanContext = String(object.spanContext);
|
|
165157
165174
|
if (object.paymentIntentId != null)
|
|
165158
165175
|
message.paymentIntentId = String(object.paymentIntentId);
|
|
165176
|
+
if (object.orgId != null)
|
|
165177
|
+
message.orgId = String(object.orgId);
|
|
165159
165178
|
return message;
|
|
165160
165179
|
};
|
|
165161
165180
|
|
|
@@ -165175,11 +165194,14 @@ $root.CancelStripePaymentIntentRequest = (function() {
|
|
|
165175
165194
|
if (options.defaults) {
|
|
165176
165195
|
object.spanContext = "";
|
|
165177
165196
|
object.paymentIntentId = "";
|
|
165197
|
+
object.orgId = "";
|
|
165178
165198
|
}
|
|
165179
165199
|
if (message.spanContext != null && message.hasOwnProperty("spanContext"))
|
|
165180
165200
|
object.spanContext = message.spanContext;
|
|
165181
165201
|
if (message.paymentIntentId != null && message.hasOwnProperty("paymentIntentId"))
|
|
165182
165202
|
object.paymentIntentId = message.paymentIntentId;
|
|
165203
|
+
if (message.orgId != null && message.hasOwnProperty("orgId"))
|
|
165204
|
+
object.orgId = message.orgId;
|
|
165183
165205
|
return object;
|
|
165184
165206
|
};
|
|
165185
165207
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellout/models",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.390",
|
|
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.390",
|
|
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": "9a428753183f88f59fbb0524decfb6e4b7e74cec"
|
|
36
36
|
}
|
package/src/proto/stripe.proto
CHANGED