wash-service-sdk 1.0.5 → 1.0.6
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.
|
@@ -456,6 +456,10 @@ export interface PaymentDateSummary {
|
|
|
456
456
|
* @generated from protobuf field: int32 billing = 5
|
|
457
457
|
*/
|
|
458
458
|
billing: number;
|
|
459
|
+
/**
|
|
460
|
+
* @generated from protobuf field: int32 subscription = 6
|
|
461
|
+
*/
|
|
462
|
+
subscription: number;
|
|
459
463
|
}
|
|
460
464
|
/**
|
|
461
465
|
* @generated from protobuf message payment.GetDailyPaymentSummaryV1Response
|
|
@@ -1445,7 +1445,8 @@ class PaymentDateSummary$Type extends runtime_4.MessageType {
|
|
|
1445
1445
|
{ no: 2, name: "date", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
1446
1446
|
{ no: 3, name: "rf", kind: "scalar", T: 5 /*ScalarType.INT32*/ },
|
|
1447
1447
|
{ no: 4, name: "credit", kind: "scalar", T: 5 /*ScalarType.INT32*/ },
|
|
1448
|
-
{ no: 5, name: "billing", kind: "scalar", T: 5 /*ScalarType.INT32*/ }
|
|
1448
|
+
{ no: 5, name: "billing", kind: "scalar", T: 5 /*ScalarType.INT32*/ },
|
|
1449
|
+
{ no: 6, name: "subscription", kind: "scalar", T: 5 /*ScalarType.INT32*/ }
|
|
1449
1450
|
]);
|
|
1450
1451
|
}
|
|
1451
1452
|
create(value) {
|
|
@@ -1455,6 +1456,7 @@ class PaymentDateSummary$Type extends runtime_4.MessageType {
|
|
|
1455
1456
|
message.rf = 0;
|
|
1456
1457
|
message.credit = 0;
|
|
1457
1458
|
message.billing = 0;
|
|
1459
|
+
message.subscription = 0;
|
|
1458
1460
|
if (value !== undefined)
|
|
1459
1461
|
runtime_3.reflectionMergePartial(this, message, value);
|
|
1460
1462
|
return message;
|
|
@@ -1479,6 +1481,9 @@ class PaymentDateSummary$Type extends runtime_4.MessageType {
|
|
|
1479
1481
|
case /* int32 billing */ 5:
|
|
1480
1482
|
message.billing = reader.int32();
|
|
1481
1483
|
break;
|
|
1484
|
+
case /* int32 subscription */ 6:
|
|
1485
|
+
message.subscription = reader.int32();
|
|
1486
|
+
break;
|
|
1482
1487
|
default:
|
|
1483
1488
|
let u = options.readUnknownField;
|
|
1484
1489
|
if (u === "throw")
|
|
@@ -1506,6 +1511,9 @@ class PaymentDateSummary$Type extends runtime_4.MessageType {
|
|
|
1506
1511
|
/* int32 billing = 5; */
|
|
1507
1512
|
if (message.billing !== 0)
|
|
1508
1513
|
writer.tag(5, runtime_1.WireType.Varint).int32(message.billing);
|
|
1514
|
+
/* int32 subscription = 6; */
|
|
1515
|
+
if (message.subscription !== 0)
|
|
1516
|
+
writer.tag(6, runtime_1.WireType.Varint).int32(message.subscription);
|
|
1509
1517
|
let u = options.writeUnknownFields;
|
|
1510
1518
|
if (u !== false)
|
|
1511
1519
|
(u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wash-service-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@protobuf-ts/grpc-transport": "^2.11.1",
|
|
20
20
|
"@protobuf-ts/runtime": "^2.11.1",
|
|
21
21
|
"@protobuf-ts/runtime-rpc": "^2.11.1",
|
|
22
|
-
"wash-service-sdk": "^1.0.
|
|
22
|
+
"wash-service-sdk": "^1.0.5"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@protobuf-ts/plugin": "^2.11.1"
|
package/proto/payment.proto
CHANGED
package/src/generated/payment.ts
CHANGED
|
@@ -462,6 +462,10 @@ export interface PaymentDateSummary {
|
|
|
462
462
|
* @generated from protobuf field: int32 billing = 5
|
|
463
463
|
*/
|
|
464
464
|
billing: number;
|
|
465
|
+
/**
|
|
466
|
+
* @generated from protobuf field: int32 subscription = 6
|
|
467
|
+
*/
|
|
468
|
+
subscription: number;
|
|
465
469
|
}
|
|
466
470
|
/**
|
|
467
471
|
* @generated from protobuf message payment.GetDailyPaymentSummaryV1Response
|
|
@@ -1908,7 +1912,8 @@ class PaymentDateSummary$Type extends MessageType<PaymentDateSummary> {
|
|
|
1908
1912
|
{ no: 2, name: "date", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
1909
1913
|
{ no: 3, name: "rf", kind: "scalar", T: 5 /*ScalarType.INT32*/ },
|
|
1910
1914
|
{ no: 4, name: "credit", kind: "scalar", T: 5 /*ScalarType.INT32*/ },
|
|
1911
|
-
{ no: 5, name: "billing", kind: "scalar", T: 5 /*ScalarType.INT32*/ }
|
|
1915
|
+
{ no: 5, name: "billing", kind: "scalar", T: 5 /*ScalarType.INT32*/ },
|
|
1916
|
+
{ no: 6, name: "subscription", kind: "scalar", T: 5 /*ScalarType.INT32*/ }
|
|
1912
1917
|
]);
|
|
1913
1918
|
}
|
|
1914
1919
|
create(value?: PartialMessage<PaymentDateSummary>): PaymentDateSummary {
|
|
@@ -1918,6 +1923,7 @@ class PaymentDateSummary$Type extends MessageType<PaymentDateSummary> {
|
|
|
1918
1923
|
message.rf = 0;
|
|
1919
1924
|
message.credit = 0;
|
|
1920
1925
|
message.billing = 0;
|
|
1926
|
+
message.subscription = 0;
|
|
1921
1927
|
if (value !== undefined)
|
|
1922
1928
|
reflectionMergePartial<PaymentDateSummary>(this, message, value);
|
|
1923
1929
|
return message;
|
|
@@ -1942,6 +1948,9 @@ class PaymentDateSummary$Type extends MessageType<PaymentDateSummary> {
|
|
|
1942
1948
|
case /* int32 billing */ 5:
|
|
1943
1949
|
message.billing = reader.int32();
|
|
1944
1950
|
break;
|
|
1951
|
+
case /* int32 subscription */ 6:
|
|
1952
|
+
message.subscription = reader.int32();
|
|
1953
|
+
break;
|
|
1945
1954
|
default:
|
|
1946
1955
|
let u = options.readUnknownField;
|
|
1947
1956
|
if (u === "throw")
|
|
@@ -1969,6 +1978,9 @@ class PaymentDateSummary$Type extends MessageType<PaymentDateSummary> {
|
|
|
1969
1978
|
/* int32 billing = 5; */
|
|
1970
1979
|
if (message.billing !== 0)
|
|
1971
1980
|
writer.tag(5, WireType.Varint).int32(message.billing);
|
|
1981
|
+
/* int32 subscription = 6; */
|
|
1982
|
+
if (message.subscription !== 0)
|
|
1983
|
+
writer.tag(6, WireType.Varint).int32(message.subscription);
|
|
1972
1984
|
let u = options.writeUnknownFields;
|
|
1973
1985
|
if (u !== false)
|
|
1974
1986
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|