@stashfin/grpc 1.2.286 → 1.2.287

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/grpc",
3
- "version": "1.2.286",
3
+ "version": "1.2.287",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -1,8 +1,11 @@
1
1
  import _m0 from "protobufjs/minimal";
2
2
  export declare const protobufPackage = "customers.enach.updatetxnstatus";
3
3
  export interface updateTxnStatusRequest {
4
- txn_id: string;
4
+ order_id: string;
5
5
  status: string;
6
+ mode?: string | undefined;
7
+ customer_id?: number | undefined;
8
+ clint_id?: string | undefined;
6
9
  }
7
10
  export interface updateTxnStatusResponse {
8
11
  status: string;
@@ -10,19 +10,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
10
10
  Object.defineProperty(exports, "__esModule", { value: true });
11
11
  exports.updateTxnStatusResponse = exports.updateTxnStatusRequest = exports.protobufPackage = void 0;
12
12
  /* eslint-disable */
13
+ const long_1 = __importDefault(require("long"));
13
14
  const minimal_1 = __importDefault(require("protobufjs/minimal"));
14
15
  exports.protobufPackage = "customers.enach.updatetxnstatus";
15
16
  function createBaseupdateTxnStatusRequest() {
16
- return { txn_id: "", status: "" };
17
+ return { order_id: "", status: "", mode: undefined, customer_id: undefined, clint_id: undefined };
17
18
  }
18
19
  exports.updateTxnStatusRequest = {
19
20
  encode(message, writer = minimal_1.default.Writer.create()) {
20
- if (message.txn_id !== "") {
21
- writer.uint32(10).string(message.txn_id);
21
+ if (message.order_id !== "") {
22
+ writer.uint32(10).string(message.order_id);
22
23
  }
23
24
  if (message.status !== "") {
24
25
  writer.uint32(18).string(message.status);
25
26
  }
27
+ if (message.mode !== undefined) {
28
+ writer.uint32(26).string(message.mode);
29
+ }
30
+ if (message.customer_id !== undefined) {
31
+ writer.uint32(32).int64(message.customer_id);
32
+ }
33
+ if (message.clint_id !== undefined) {
34
+ writer.uint32(42).string(message.clint_id);
35
+ }
26
36
  return writer;
27
37
  },
28
38
  decode(input, length) {
@@ -36,7 +46,7 @@ exports.updateTxnStatusRequest = {
36
46
  if (tag !== 10) {
37
47
  break;
38
48
  }
39
- message.txn_id = reader.string();
49
+ message.order_id = reader.string();
40
50
  continue;
41
51
  case 2:
42
52
  if (tag !== 18) {
@@ -44,6 +54,24 @@ exports.updateTxnStatusRequest = {
44
54
  }
45
55
  message.status = reader.string();
46
56
  continue;
57
+ case 3:
58
+ if (tag !== 26) {
59
+ break;
60
+ }
61
+ message.mode = reader.string();
62
+ continue;
63
+ case 4:
64
+ if (tag !== 32) {
65
+ break;
66
+ }
67
+ message.customer_id = longToNumber(reader.int64());
68
+ continue;
69
+ case 5:
70
+ if (tag !== 42) {
71
+ break;
72
+ }
73
+ message.clint_id = reader.string();
74
+ continue;
47
75
  }
48
76
  if ((tag & 7) === 4 || tag === 0) {
49
77
  break;
@@ -54,18 +82,30 @@ exports.updateTxnStatusRequest = {
54
82
  },
55
83
  fromJSON(object) {
56
84
  return {
57
- txn_id: isSet(object.txn_id) ? globalThis.String(object.txn_id) : "",
85
+ order_id: isSet(object.order_id) ? globalThis.String(object.order_id) : "",
58
86
  status: isSet(object.status) ? globalThis.String(object.status) : "",
87
+ mode: isSet(object.mode) ? globalThis.String(object.mode) : undefined,
88
+ customer_id: isSet(object.customer_id) ? globalThis.Number(object.customer_id) : undefined,
89
+ clint_id: isSet(object.clint_id) ? globalThis.String(object.clint_id) : undefined,
59
90
  };
60
91
  },
61
92
  toJSON(message) {
62
93
  const obj = {};
63
- if (message.txn_id !== "") {
64
- obj.txn_id = message.txn_id;
94
+ if (message.order_id !== "") {
95
+ obj.order_id = message.order_id;
65
96
  }
66
97
  if (message.status !== "") {
67
98
  obj.status = message.status;
68
99
  }
100
+ if (message.mode !== undefined) {
101
+ obj.mode = message.mode;
102
+ }
103
+ if (message.customer_id !== undefined) {
104
+ obj.customer_id = Math.round(message.customer_id);
105
+ }
106
+ if (message.clint_id !== undefined) {
107
+ obj.clint_id = message.clint_id;
108
+ }
69
109
  return obj;
70
110
  },
71
111
  create(base) {
@@ -73,8 +113,11 @@ exports.updateTxnStatusRequest = {
73
113
  },
74
114
  fromPartial(object) {
75
115
  const message = createBaseupdateTxnStatusRequest();
76
- message.txn_id = object.txn_id ?? "";
116
+ message.order_id = object.order_id ?? "";
77
117
  message.status = object.status ?? "";
118
+ message.mode = object.mode ?? undefined;
119
+ message.customer_id = object.customer_id ?? undefined;
120
+ message.clint_id = object.clint_id ?? undefined;
78
121
  return message;
79
122
  },
80
123
  };
@@ -128,6 +171,19 @@ exports.updateTxnStatusResponse = {
128
171
  return message;
129
172
  },
130
173
  };
174
+ function longToNumber(long) {
175
+ if (long.gt(globalThis.Number.MAX_SAFE_INTEGER)) {
176
+ throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
177
+ }
178
+ if (long.lt(globalThis.Number.MIN_SAFE_INTEGER)) {
179
+ throw new globalThis.Error("Value is smaller than Number.MIN_SAFE_INTEGER");
180
+ }
181
+ return long.toNumber();
182
+ }
183
+ if (minimal_1.default.util.Long !== long_1.default) {
184
+ minimal_1.default.util.Long = long_1.default;
185
+ minimal_1.default.configure();
186
+ }
131
187
  function isSet(value) {
132
188
  return value !== null && value !== undefined;
133
189
  }