@stashfin/grpc 1.2.183 → 1.2.184
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 +1 -1
- package/ts/customers/getlimit.d.ts +2 -0
- package/ts/customers/getlimit.js +29 -1
- package/ts/customers/sendemailtoken.d.ts +35 -0
- package/ts/customers/{savelimit.js → sendemailtoken.js} +30 -30
- package/ts/customers/skipdlrcscreen.d.ts +35 -0
- package/ts/customers/skipdlrcscreen.js +117 -0
- package/ts/customers/step1.d.ts +69 -0
- package/ts/customers/step1.js +395 -0
- package/ts/customers/step10.d.ts +73 -0
- package/ts/customers/step10.js +459 -0
- package/ts/customers/step2.d.ts +68 -0
- package/ts/customers/step2.js +381 -0
- package/ts/customers/step7.d.ts +68 -0
- package/ts/customers/step7.js +381 -0
- package/ts/customers/step8.d.ts +69 -0
- package/ts/customers/step8.js +395 -0
- package/ts/customers/step9.d.ts +75 -0
- package/ts/customers/step9.js +489 -0
- package/ts/customers/stepstatic.d.ts +66 -0
- package/ts/customers/stepstatic.js +354 -0
- package/ts/customers/verifyemail.d.ts +35 -0
- package/ts/customers/verifyemail.js +117 -0
- package/ts/customers.d.ts +0 -28
- package/ts/customers.js +0 -20
- package/ts/google/protobuf/timestamp.d.ts +127 -0
- package/ts/google/protobuf/timestamp.js +97 -0
- package/ts/payments/checkpaymentstatus.d.ts +51 -0
- package/ts/payments/checkpaymentstatus.js +259 -0
- package/ts/payments/getpaymentoptions.d.ts +50 -0
- package/ts/payments/getpaymentoptions.js +233 -0
- package/ts/payments/initiatepayment.d.ts +67 -0
- package/ts/payments/initiatepayment.js +381 -0
- package/ts/payments/nachpresentation.d.ts +39 -0
- package/ts/payments/nachpresentation.js +191 -0
- package/ts/payments/nachregistration.d.ts +51 -0
- package/ts/payments/nachregistration.js +257 -0
- package/ts/payments.d.ts +42 -211
- package/ts/payments.js +28 -1091
- package/ts/customers/getappsubmittedscreen.d.ts +0 -50
- package/ts/customers/getappsubmittedscreen.js +0 -228
- package/ts/customers/savelimit.d.ts +0 -35
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import _m0 from "protobufjs/minimal";
|
|
2
|
-
export declare const protobufPackage = "customers.getappsubmittedscreen";
|
|
3
|
-
export interface getAppSubmittedRequest {
|
|
4
|
-
}
|
|
5
|
-
export interface getAppSubmittedResponse {
|
|
6
|
-
text: string;
|
|
7
|
-
description: string;
|
|
8
|
-
do_more: doMore[];
|
|
9
|
-
}
|
|
10
|
-
export interface doMore {
|
|
11
|
-
icon: string;
|
|
12
|
-
text: string;
|
|
13
|
-
description: string;
|
|
14
|
-
action: string;
|
|
15
|
-
}
|
|
16
|
-
export declare const getAppSubmittedRequest: {
|
|
17
|
-
encode(_: getAppSubmittedRequest, writer?: _m0.Writer): _m0.Writer;
|
|
18
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): getAppSubmittedRequest;
|
|
19
|
-
fromJSON(_: any): getAppSubmittedRequest;
|
|
20
|
-
toJSON(_: getAppSubmittedRequest): unknown;
|
|
21
|
-
create<I extends Exact<DeepPartial<getAppSubmittedRequest>, I>>(base?: I): getAppSubmittedRequest;
|
|
22
|
-
fromPartial<I extends Exact<DeepPartial<getAppSubmittedRequest>, I>>(_: I): getAppSubmittedRequest;
|
|
23
|
-
};
|
|
24
|
-
export declare const getAppSubmittedResponse: {
|
|
25
|
-
encode(message: getAppSubmittedResponse, writer?: _m0.Writer): _m0.Writer;
|
|
26
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): getAppSubmittedResponse;
|
|
27
|
-
fromJSON(object: any): getAppSubmittedResponse;
|
|
28
|
-
toJSON(message: getAppSubmittedResponse): unknown;
|
|
29
|
-
create<I extends Exact<DeepPartial<getAppSubmittedResponse>, I>>(base?: I): getAppSubmittedResponse;
|
|
30
|
-
fromPartial<I extends Exact<DeepPartial<getAppSubmittedResponse>, I>>(object: I): getAppSubmittedResponse;
|
|
31
|
-
};
|
|
32
|
-
export declare const doMore: {
|
|
33
|
-
encode(message: doMore, writer?: _m0.Writer): _m0.Writer;
|
|
34
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): doMore;
|
|
35
|
-
fromJSON(object: any): doMore;
|
|
36
|
-
toJSON(message: doMore): unknown;
|
|
37
|
-
create<I extends Exact<DeepPartial<doMore>, I>>(base?: I): doMore;
|
|
38
|
-
fromPartial<I extends Exact<DeepPartial<doMore>, I>>(object: I): doMore;
|
|
39
|
-
};
|
|
40
|
-
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
41
|
-
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
42
|
-
[K in keyof T]?: DeepPartial<T[K]>;
|
|
43
|
-
} : Partial<T>;
|
|
44
|
-
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
45
|
-
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
46
|
-
[K in keyof P]: Exact<P[K], I[K]>;
|
|
47
|
-
} & {
|
|
48
|
-
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
49
|
-
};
|
|
50
|
-
export {};
|
|
@@ -1,228 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
|
-
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v1.181.0
|
|
5
|
-
// protoc v5.28.0
|
|
6
|
-
// source: customers/getappsubmittedscreen.proto
|
|
7
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
-
};
|
|
10
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
-
exports.doMore = exports.getAppSubmittedResponse = exports.getAppSubmittedRequest = exports.protobufPackage = void 0;
|
|
12
|
-
/* eslint-disable */
|
|
13
|
-
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
14
|
-
exports.protobufPackage = "customers.getappsubmittedscreen";
|
|
15
|
-
function createBasegetAppSubmittedRequest() {
|
|
16
|
-
return {};
|
|
17
|
-
}
|
|
18
|
-
exports.getAppSubmittedRequest = {
|
|
19
|
-
encode(_, writer = minimal_1.default.Writer.create()) {
|
|
20
|
-
return writer;
|
|
21
|
-
},
|
|
22
|
-
decode(input, length) {
|
|
23
|
-
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
24
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
25
|
-
const message = createBasegetAppSubmittedRequest();
|
|
26
|
-
while (reader.pos < end) {
|
|
27
|
-
const tag = reader.uint32();
|
|
28
|
-
switch (tag >>> 3) {
|
|
29
|
-
}
|
|
30
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
31
|
-
break;
|
|
32
|
-
}
|
|
33
|
-
reader.skipType(tag & 7);
|
|
34
|
-
}
|
|
35
|
-
return message;
|
|
36
|
-
},
|
|
37
|
-
fromJSON(_) {
|
|
38
|
-
return {};
|
|
39
|
-
},
|
|
40
|
-
toJSON(_) {
|
|
41
|
-
const obj = {};
|
|
42
|
-
return obj;
|
|
43
|
-
},
|
|
44
|
-
create(base) {
|
|
45
|
-
return exports.getAppSubmittedRequest.fromPartial(base ?? {});
|
|
46
|
-
},
|
|
47
|
-
fromPartial(_) {
|
|
48
|
-
const message = createBasegetAppSubmittedRequest();
|
|
49
|
-
return message;
|
|
50
|
-
},
|
|
51
|
-
};
|
|
52
|
-
function createBasegetAppSubmittedResponse() {
|
|
53
|
-
return { text: "", description: "", do_more: [] };
|
|
54
|
-
}
|
|
55
|
-
exports.getAppSubmittedResponse = {
|
|
56
|
-
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
57
|
-
if (message.text !== "") {
|
|
58
|
-
writer.uint32(10).string(message.text);
|
|
59
|
-
}
|
|
60
|
-
if (message.description !== "") {
|
|
61
|
-
writer.uint32(18).string(message.description);
|
|
62
|
-
}
|
|
63
|
-
for (const v of message.do_more) {
|
|
64
|
-
exports.doMore.encode(v, writer.uint32(26).fork()).ldelim();
|
|
65
|
-
}
|
|
66
|
-
return writer;
|
|
67
|
-
},
|
|
68
|
-
decode(input, length) {
|
|
69
|
-
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
70
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
71
|
-
const message = createBasegetAppSubmittedResponse();
|
|
72
|
-
while (reader.pos < end) {
|
|
73
|
-
const tag = reader.uint32();
|
|
74
|
-
switch (tag >>> 3) {
|
|
75
|
-
case 1:
|
|
76
|
-
if (tag !== 10) {
|
|
77
|
-
break;
|
|
78
|
-
}
|
|
79
|
-
message.text = reader.string();
|
|
80
|
-
continue;
|
|
81
|
-
case 2:
|
|
82
|
-
if (tag !== 18) {
|
|
83
|
-
break;
|
|
84
|
-
}
|
|
85
|
-
message.description = reader.string();
|
|
86
|
-
continue;
|
|
87
|
-
case 3:
|
|
88
|
-
if (tag !== 26) {
|
|
89
|
-
break;
|
|
90
|
-
}
|
|
91
|
-
message.do_more.push(exports.doMore.decode(reader, reader.uint32()));
|
|
92
|
-
continue;
|
|
93
|
-
}
|
|
94
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
95
|
-
break;
|
|
96
|
-
}
|
|
97
|
-
reader.skipType(tag & 7);
|
|
98
|
-
}
|
|
99
|
-
return message;
|
|
100
|
-
},
|
|
101
|
-
fromJSON(object) {
|
|
102
|
-
return {
|
|
103
|
-
text: isSet(object.text) ? globalThis.String(object.text) : "",
|
|
104
|
-
description: isSet(object.description) ? globalThis.String(object.description) : "",
|
|
105
|
-
do_more: globalThis.Array.isArray(object?.do_more) ? object.do_more.map((e) => exports.doMore.fromJSON(e)) : [],
|
|
106
|
-
};
|
|
107
|
-
},
|
|
108
|
-
toJSON(message) {
|
|
109
|
-
const obj = {};
|
|
110
|
-
if (message.text !== "") {
|
|
111
|
-
obj.text = message.text;
|
|
112
|
-
}
|
|
113
|
-
if (message.description !== "") {
|
|
114
|
-
obj.description = message.description;
|
|
115
|
-
}
|
|
116
|
-
if (message.do_more?.length) {
|
|
117
|
-
obj.do_more = message.do_more.map((e) => exports.doMore.toJSON(e));
|
|
118
|
-
}
|
|
119
|
-
return obj;
|
|
120
|
-
},
|
|
121
|
-
create(base) {
|
|
122
|
-
return exports.getAppSubmittedResponse.fromPartial(base ?? {});
|
|
123
|
-
},
|
|
124
|
-
fromPartial(object) {
|
|
125
|
-
const message = createBasegetAppSubmittedResponse();
|
|
126
|
-
message.text = object.text ?? "";
|
|
127
|
-
message.description = object.description ?? "";
|
|
128
|
-
message.do_more = object.do_more?.map((e) => exports.doMore.fromPartial(e)) || [];
|
|
129
|
-
return message;
|
|
130
|
-
},
|
|
131
|
-
};
|
|
132
|
-
function createBasedoMore() {
|
|
133
|
-
return { icon: "", text: "", description: "", action: "" };
|
|
134
|
-
}
|
|
135
|
-
exports.doMore = {
|
|
136
|
-
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
137
|
-
if (message.icon !== "") {
|
|
138
|
-
writer.uint32(10).string(message.icon);
|
|
139
|
-
}
|
|
140
|
-
if (message.text !== "") {
|
|
141
|
-
writer.uint32(18).string(message.text);
|
|
142
|
-
}
|
|
143
|
-
if (message.description !== "") {
|
|
144
|
-
writer.uint32(26).string(message.description);
|
|
145
|
-
}
|
|
146
|
-
if (message.action !== "") {
|
|
147
|
-
writer.uint32(34).string(message.action);
|
|
148
|
-
}
|
|
149
|
-
return writer;
|
|
150
|
-
},
|
|
151
|
-
decode(input, length) {
|
|
152
|
-
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
153
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
154
|
-
const message = createBasedoMore();
|
|
155
|
-
while (reader.pos < end) {
|
|
156
|
-
const tag = reader.uint32();
|
|
157
|
-
switch (tag >>> 3) {
|
|
158
|
-
case 1:
|
|
159
|
-
if (tag !== 10) {
|
|
160
|
-
break;
|
|
161
|
-
}
|
|
162
|
-
message.icon = reader.string();
|
|
163
|
-
continue;
|
|
164
|
-
case 2:
|
|
165
|
-
if (tag !== 18) {
|
|
166
|
-
break;
|
|
167
|
-
}
|
|
168
|
-
message.text = reader.string();
|
|
169
|
-
continue;
|
|
170
|
-
case 3:
|
|
171
|
-
if (tag !== 26) {
|
|
172
|
-
break;
|
|
173
|
-
}
|
|
174
|
-
message.description = reader.string();
|
|
175
|
-
continue;
|
|
176
|
-
case 4:
|
|
177
|
-
if (tag !== 34) {
|
|
178
|
-
break;
|
|
179
|
-
}
|
|
180
|
-
message.action = reader.string();
|
|
181
|
-
continue;
|
|
182
|
-
}
|
|
183
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
184
|
-
break;
|
|
185
|
-
}
|
|
186
|
-
reader.skipType(tag & 7);
|
|
187
|
-
}
|
|
188
|
-
return message;
|
|
189
|
-
},
|
|
190
|
-
fromJSON(object) {
|
|
191
|
-
return {
|
|
192
|
-
icon: isSet(object.icon) ? globalThis.String(object.icon) : "",
|
|
193
|
-
text: isSet(object.text) ? globalThis.String(object.text) : "",
|
|
194
|
-
description: isSet(object.description) ? globalThis.String(object.description) : "",
|
|
195
|
-
action: isSet(object.action) ? globalThis.String(object.action) : "",
|
|
196
|
-
};
|
|
197
|
-
},
|
|
198
|
-
toJSON(message) {
|
|
199
|
-
const obj = {};
|
|
200
|
-
if (message.icon !== "") {
|
|
201
|
-
obj.icon = message.icon;
|
|
202
|
-
}
|
|
203
|
-
if (message.text !== "") {
|
|
204
|
-
obj.text = message.text;
|
|
205
|
-
}
|
|
206
|
-
if (message.description !== "") {
|
|
207
|
-
obj.description = message.description;
|
|
208
|
-
}
|
|
209
|
-
if (message.action !== "") {
|
|
210
|
-
obj.action = message.action;
|
|
211
|
-
}
|
|
212
|
-
return obj;
|
|
213
|
-
},
|
|
214
|
-
create(base) {
|
|
215
|
-
return exports.doMore.fromPartial(base ?? {});
|
|
216
|
-
},
|
|
217
|
-
fromPartial(object) {
|
|
218
|
-
const message = createBasedoMore();
|
|
219
|
-
message.icon = object.icon ?? "";
|
|
220
|
-
message.text = object.text ?? "";
|
|
221
|
-
message.description = object.description ?? "";
|
|
222
|
-
message.action = object.action ?? "";
|
|
223
|
-
return message;
|
|
224
|
-
},
|
|
225
|
-
};
|
|
226
|
-
function isSet(value) {
|
|
227
|
-
return value !== null && value !== undefined;
|
|
228
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import _m0 from "protobufjs/minimal";
|
|
2
|
-
export declare const protobufPackage = "customers.savelimit";
|
|
3
|
-
export interface saveLimitRequest {
|
|
4
|
-
option: string;
|
|
5
|
-
}
|
|
6
|
-
export interface saveLimitResponse {
|
|
7
|
-
next_step: string;
|
|
8
|
-
}
|
|
9
|
-
export declare const saveLimitRequest: {
|
|
10
|
-
encode(message: saveLimitRequest, writer?: _m0.Writer): _m0.Writer;
|
|
11
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): saveLimitRequest;
|
|
12
|
-
fromJSON(object: any): saveLimitRequest;
|
|
13
|
-
toJSON(message: saveLimitRequest): unknown;
|
|
14
|
-
create<I extends Exact<DeepPartial<saveLimitRequest>, I>>(base?: I): saveLimitRequest;
|
|
15
|
-
fromPartial<I extends Exact<DeepPartial<saveLimitRequest>, I>>(object: I): saveLimitRequest;
|
|
16
|
-
};
|
|
17
|
-
export declare const saveLimitResponse: {
|
|
18
|
-
encode(message: saveLimitResponse, writer?: _m0.Writer): _m0.Writer;
|
|
19
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): saveLimitResponse;
|
|
20
|
-
fromJSON(object: any): saveLimitResponse;
|
|
21
|
-
toJSON(message: saveLimitResponse): unknown;
|
|
22
|
-
create<I extends Exact<DeepPartial<saveLimitResponse>, I>>(base?: I): saveLimitResponse;
|
|
23
|
-
fromPartial<I extends Exact<DeepPartial<saveLimitResponse>, I>>(object: I): saveLimitResponse;
|
|
24
|
-
};
|
|
25
|
-
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
26
|
-
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
27
|
-
[K in keyof T]?: DeepPartial<T[K]>;
|
|
28
|
-
} : Partial<T>;
|
|
29
|
-
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
30
|
-
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
31
|
-
[K in keyof P]: Exact<P[K], I[K]>;
|
|
32
|
-
} & {
|
|
33
|
-
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
34
|
-
};
|
|
35
|
-
export {};
|