@alexochihua/protos 1.0.34 → 1.0.36

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.
Files changed (28) hide show
  1. package/dist/generated/kapital/fraud_catalogs/v1/fraud_catalogs.d.ts +87 -1
  2. package/dist/generated/kapital/fraud_catalogs/v1/fraud_catalogs.js +395 -1
  3. package/dist/generated/kapital/fraud_catalogs/v1/fraud_catalogs.js.map +1 -1
  4. package/dist/generated/kapital/fraud_catalogs/v1/fraud_catalogs_types.d.ts +5 -0
  5. package/dist/generated/kapital/fraud_catalogs/v1/fraud_catalogs_types.js +53 -1
  6. package/dist/generated/kapital/fraud_catalogs/v1/fraud_catalogs_types.js.map +1 -1
  7. package/dist/generated/kapital/frauds/v1/frauds.d.ts +2 -0
  8. package/dist/generated/kapital/frauds/v1/frauds.js +31 -1
  9. package/dist/generated/kapital/frauds/v1/frauds.js.map +1 -1
  10. package/dist/generated/kapital/frauds/v1/frauds_types.d.ts +1 -0
  11. package/dist/generated/kapital/frauds/v1/frauds_types.js +12 -0
  12. package/dist/generated/kapital/frauds/v1/frauds_types.js.map +1 -1
  13. package/dist/generated/kapital/products/v1/catalogs_products.d.ts +92 -0
  14. package/dist/generated/kapital/products/v1/catalogs_products.js +308 -0
  15. package/dist/generated/kapital/products/v1/catalogs_products.js.map +1 -0
  16. package/dist/generated/kapital/products/v1/catalogs_products_types.d.ts +18 -0
  17. package/dist/generated/kapital/products/v1/catalogs_products_types.js +64 -0
  18. package/dist/generated/kapital/products/v1/catalogs_products_types.js.map +1 -0
  19. package/dist/index.d.ts +2 -0
  20. package/dist/index.js +4 -1
  21. package/dist/index.js.map +1 -1
  22. package/package.json +15 -1
  23. package/proto/kapital/fraud_catalogs/v1/fraud_catalogs.proto +35 -0
  24. package/proto/kapital/fraud_catalogs/v1/fraud_catalogs_types.proto +5 -0
  25. package/proto/kapital/frauds/v1/frauds.proto +2 -0
  26. package/proto/kapital/frauds/v1/frauds_types.proto +1 -0
  27. package/proto/kapital/products/v1/catalogs_products.proto +37 -0
  28. package/proto/kapital/products/v1/catalogs_products_types.proto +10 -0
@@ -0,0 +1,308 @@
1
+ "use strict";
2
+ // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
+ // versions:
4
+ // protoc-gen-ts_proto v2.11.6
5
+ // protoc unknown
6
+ // source: kapital/products/v1/catalogs_products.proto
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.CatalogsProductServiceClient = exports.CatalogsProductServiceService = exports.GetCatPeriodsResponse = exports.GetCatPeriodsRequest = exports.GetCatRuleOperatorsResponse = exports.GetCatRuleOperatorsRequest = exports.GetCatRuleParametersResponse = exports.GetCatRuleParametersRequest = exports.protobufPackage = void 0;
9
+ /* eslint-disable */
10
+ const wire_1 = require("@bufbuild/protobuf/wire");
11
+ const grpc_js_1 = require("@grpc/grpc-js");
12
+ const meta_1 = require("../../common/v1/meta");
13
+ const catalogs_products_types_1 = require("./catalogs_products_types");
14
+ exports.protobufPackage = "kapital.products.v1";
15
+ function createBaseGetCatRuleParametersRequest() {
16
+ return {};
17
+ }
18
+ exports.GetCatRuleParametersRequest = {
19
+ encode(_, writer = new wire_1.BinaryWriter()) {
20
+ return writer;
21
+ },
22
+ decode(input, length) {
23
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
24
+ const end = length === undefined ? reader.len : reader.pos + length;
25
+ const message = createBaseGetCatRuleParametersRequest();
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.skip(tag & 7);
34
+ }
35
+ return message;
36
+ },
37
+ create(base) {
38
+ return exports.GetCatRuleParametersRequest.fromPartial(base ?? {});
39
+ },
40
+ fromPartial(_) {
41
+ const message = createBaseGetCatRuleParametersRequest();
42
+ return message;
43
+ },
44
+ };
45
+ function createBaseGetCatRuleParametersResponse() {
46
+ return { meta: undefined, rule_parameters: [] };
47
+ }
48
+ exports.GetCatRuleParametersResponse = {
49
+ encode(message, writer = new wire_1.BinaryWriter()) {
50
+ if (message.meta !== undefined) {
51
+ meta_1.ResponseMeta.encode(message.meta, writer.uint32(10).fork()).join();
52
+ }
53
+ for (const v of message.rule_parameters) {
54
+ catalogs_products_types_1.CatalogItem.encode(v, writer.uint32(18).fork()).join();
55
+ }
56
+ return writer;
57
+ },
58
+ decode(input, length) {
59
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
60
+ const end = length === undefined ? reader.len : reader.pos + length;
61
+ const message = createBaseGetCatRuleParametersResponse();
62
+ while (reader.pos < end) {
63
+ const tag = reader.uint32();
64
+ switch (tag >>> 3) {
65
+ case 1: {
66
+ if (tag !== 10) {
67
+ break;
68
+ }
69
+ message.meta = meta_1.ResponseMeta.decode(reader, reader.uint32());
70
+ continue;
71
+ }
72
+ case 2: {
73
+ if (tag !== 18) {
74
+ break;
75
+ }
76
+ message.rule_parameters.push(catalogs_products_types_1.CatalogItem.decode(reader, reader.uint32()));
77
+ continue;
78
+ }
79
+ }
80
+ if ((tag & 7) === 4 || tag === 0) {
81
+ break;
82
+ }
83
+ reader.skip(tag & 7);
84
+ }
85
+ return message;
86
+ },
87
+ create(base) {
88
+ return exports.GetCatRuleParametersResponse.fromPartial(base ?? {});
89
+ },
90
+ fromPartial(object) {
91
+ const message = createBaseGetCatRuleParametersResponse();
92
+ message.meta = (object.meta !== undefined && object.meta !== null)
93
+ ? meta_1.ResponseMeta.fromPartial(object.meta)
94
+ : undefined;
95
+ message.rule_parameters = object.rule_parameters?.map((e) => catalogs_products_types_1.CatalogItem.fromPartial(e)) || [];
96
+ return message;
97
+ },
98
+ };
99
+ function createBaseGetCatRuleOperatorsRequest() {
100
+ return { rule_parameter: undefined };
101
+ }
102
+ exports.GetCatRuleOperatorsRequest = {
103
+ encode(message, writer = new wire_1.BinaryWriter()) {
104
+ if (message.rule_parameter !== undefined) {
105
+ writer.uint32(10).string(message.rule_parameter);
106
+ }
107
+ return writer;
108
+ },
109
+ decode(input, length) {
110
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
111
+ const end = length === undefined ? reader.len : reader.pos + length;
112
+ const message = createBaseGetCatRuleOperatorsRequest();
113
+ while (reader.pos < end) {
114
+ const tag = reader.uint32();
115
+ switch (tag >>> 3) {
116
+ case 1: {
117
+ if (tag !== 10) {
118
+ break;
119
+ }
120
+ message.rule_parameter = reader.string();
121
+ continue;
122
+ }
123
+ }
124
+ if ((tag & 7) === 4 || tag === 0) {
125
+ break;
126
+ }
127
+ reader.skip(tag & 7);
128
+ }
129
+ return message;
130
+ },
131
+ create(base) {
132
+ return exports.GetCatRuleOperatorsRequest.fromPartial(base ?? {});
133
+ },
134
+ fromPartial(object) {
135
+ const message = createBaseGetCatRuleOperatorsRequest();
136
+ message.rule_parameter = object.rule_parameter ?? undefined;
137
+ return message;
138
+ },
139
+ };
140
+ function createBaseGetCatRuleOperatorsResponse() {
141
+ return { meta: undefined, rule_operators: [] };
142
+ }
143
+ exports.GetCatRuleOperatorsResponse = {
144
+ encode(message, writer = new wire_1.BinaryWriter()) {
145
+ if (message.meta !== undefined) {
146
+ meta_1.ResponseMeta.encode(message.meta, writer.uint32(10).fork()).join();
147
+ }
148
+ for (const v of message.rule_operators) {
149
+ catalogs_products_types_1.CatalogItem.encode(v, writer.uint32(18).fork()).join();
150
+ }
151
+ return writer;
152
+ },
153
+ decode(input, length) {
154
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
155
+ const end = length === undefined ? reader.len : reader.pos + length;
156
+ const message = createBaseGetCatRuleOperatorsResponse();
157
+ while (reader.pos < end) {
158
+ const tag = reader.uint32();
159
+ switch (tag >>> 3) {
160
+ case 1: {
161
+ if (tag !== 10) {
162
+ break;
163
+ }
164
+ message.meta = meta_1.ResponseMeta.decode(reader, reader.uint32());
165
+ continue;
166
+ }
167
+ case 2: {
168
+ if (tag !== 18) {
169
+ break;
170
+ }
171
+ message.rule_operators.push(catalogs_products_types_1.CatalogItem.decode(reader, reader.uint32()));
172
+ continue;
173
+ }
174
+ }
175
+ if ((tag & 7) === 4 || tag === 0) {
176
+ break;
177
+ }
178
+ reader.skip(tag & 7);
179
+ }
180
+ return message;
181
+ },
182
+ create(base) {
183
+ return exports.GetCatRuleOperatorsResponse.fromPartial(base ?? {});
184
+ },
185
+ fromPartial(object) {
186
+ const message = createBaseGetCatRuleOperatorsResponse();
187
+ message.meta = (object.meta !== undefined && object.meta !== null)
188
+ ? meta_1.ResponseMeta.fromPartial(object.meta)
189
+ : undefined;
190
+ message.rule_operators = object.rule_operators?.map((e) => catalogs_products_types_1.CatalogItem.fromPartial(e)) || [];
191
+ return message;
192
+ },
193
+ };
194
+ function createBaseGetCatPeriodsRequest() {
195
+ return {};
196
+ }
197
+ exports.GetCatPeriodsRequest = {
198
+ encode(_, writer = new wire_1.BinaryWriter()) {
199
+ return writer;
200
+ },
201
+ decode(input, length) {
202
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
203
+ const end = length === undefined ? reader.len : reader.pos + length;
204
+ const message = createBaseGetCatPeriodsRequest();
205
+ while (reader.pos < end) {
206
+ const tag = reader.uint32();
207
+ switch (tag >>> 3) {
208
+ }
209
+ if ((tag & 7) === 4 || tag === 0) {
210
+ break;
211
+ }
212
+ reader.skip(tag & 7);
213
+ }
214
+ return message;
215
+ },
216
+ create(base) {
217
+ return exports.GetCatPeriodsRequest.fromPartial(base ?? {});
218
+ },
219
+ fromPartial(_) {
220
+ const message = createBaseGetCatPeriodsRequest();
221
+ return message;
222
+ },
223
+ };
224
+ function createBaseGetCatPeriodsResponse() {
225
+ return { meta: undefined, periods: [] };
226
+ }
227
+ exports.GetCatPeriodsResponse = {
228
+ encode(message, writer = new wire_1.BinaryWriter()) {
229
+ if (message.meta !== undefined) {
230
+ meta_1.ResponseMeta.encode(message.meta, writer.uint32(10).fork()).join();
231
+ }
232
+ for (const v of message.periods) {
233
+ catalogs_products_types_1.CatalogItem.encode(v, writer.uint32(18).fork()).join();
234
+ }
235
+ return writer;
236
+ },
237
+ decode(input, length) {
238
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
239
+ const end = length === undefined ? reader.len : reader.pos + length;
240
+ const message = createBaseGetCatPeriodsResponse();
241
+ while (reader.pos < end) {
242
+ const tag = reader.uint32();
243
+ switch (tag >>> 3) {
244
+ case 1: {
245
+ if (tag !== 10) {
246
+ break;
247
+ }
248
+ message.meta = meta_1.ResponseMeta.decode(reader, reader.uint32());
249
+ continue;
250
+ }
251
+ case 2: {
252
+ if (tag !== 18) {
253
+ break;
254
+ }
255
+ message.periods.push(catalogs_products_types_1.CatalogItem.decode(reader, reader.uint32()));
256
+ continue;
257
+ }
258
+ }
259
+ if ((tag & 7) === 4 || tag === 0) {
260
+ break;
261
+ }
262
+ reader.skip(tag & 7);
263
+ }
264
+ return message;
265
+ },
266
+ create(base) {
267
+ return exports.GetCatPeriodsResponse.fromPartial(base ?? {});
268
+ },
269
+ fromPartial(object) {
270
+ const message = createBaseGetCatPeriodsResponse();
271
+ message.meta = (object.meta !== undefined && object.meta !== null)
272
+ ? meta_1.ResponseMeta.fromPartial(object.meta)
273
+ : undefined;
274
+ message.periods = object.periods?.map((e) => catalogs_products_types_1.CatalogItem.fromPartial(e)) || [];
275
+ return message;
276
+ },
277
+ };
278
+ exports.CatalogsProductServiceService = {
279
+ getCatRuleParameters: {
280
+ path: "/kapital.products.v1.CatalogsProductService/GetCatRuleParameters",
281
+ requestStream: false,
282
+ responseStream: false,
283
+ requestSerialize: (value) => Buffer.from(exports.GetCatRuleParametersRequest.encode(value).finish()),
284
+ requestDeserialize: (value) => exports.GetCatRuleParametersRequest.decode(value),
285
+ responseSerialize: (value) => Buffer.from(exports.GetCatRuleParametersResponse.encode(value).finish()),
286
+ responseDeserialize: (value) => exports.GetCatRuleParametersResponse.decode(value),
287
+ },
288
+ getCatRuleOperators: {
289
+ path: "/kapital.products.v1.CatalogsProductService/GetCatRuleOperators",
290
+ requestStream: false,
291
+ responseStream: false,
292
+ requestSerialize: (value) => Buffer.from(exports.GetCatRuleOperatorsRequest.encode(value).finish()),
293
+ requestDeserialize: (value) => exports.GetCatRuleOperatorsRequest.decode(value),
294
+ responseSerialize: (value) => Buffer.from(exports.GetCatRuleOperatorsResponse.encode(value).finish()),
295
+ responseDeserialize: (value) => exports.GetCatRuleOperatorsResponse.decode(value),
296
+ },
297
+ getCatPeriods: {
298
+ path: "/kapital.products.v1.CatalogsProductService/GetCatPeriods",
299
+ requestStream: false,
300
+ responseStream: false,
301
+ requestSerialize: (value) => Buffer.from(exports.GetCatPeriodsRequest.encode(value).finish()),
302
+ requestDeserialize: (value) => exports.GetCatPeriodsRequest.decode(value),
303
+ responseSerialize: (value) => Buffer.from(exports.GetCatPeriodsResponse.encode(value).finish()),
304
+ responseDeserialize: (value) => exports.GetCatPeriodsResponse.decode(value),
305
+ },
306
+ };
307
+ exports.CatalogsProductServiceClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.CatalogsProductServiceService, "kapital.products.v1.CatalogsProductService");
308
+ //# sourceMappingURL=catalogs_products.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalogs_products.js","sourceRoot":"","sources":["../../../../../src/generated/kapital/products/v1/catalogs_products.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
2
+ export declare const protobufPackage = "kapital.products.v1";
3
+ export interface CatalogItem {
4
+ value: string;
5
+ label: string;
6
+ }
7
+ export declare const CatalogItem: MessageFns<CatalogItem>;
8
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
9
+ 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 {} ? {
10
+ [K in keyof T]?: DeepPartial<T[K]>;
11
+ } : Partial<T>;
12
+ export interface MessageFns<T> {
13
+ encode(message: T, writer?: BinaryWriter): BinaryWriter;
14
+ decode(input: BinaryReader | Uint8Array, length?: number): T;
15
+ create(base?: DeepPartial<T>): T;
16
+ fromPartial(object: DeepPartial<T>): T;
17
+ }
18
+ export {};
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
+ // versions:
4
+ // protoc-gen-ts_proto v2.11.6
5
+ // protoc unknown
6
+ // source: kapital/products/v1/catalogs_products_types.proto
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.CatalogItem = exports.protobufPackage = void 0;
9
+ /* eslint-disable */
10
+ const wire_1 = require("@bufbuild/protobuf/wire");
11
+ exports.protobufPackage = "kapital.products.v1";
12
+ function createBaseCatalogItem() {
13
+ return { value: "", label: "" };
14
+ }
15
+ exports.CatalogItem = {
16
+ encode(message, writer = new wire_1.BinaryWriter()) {
17
+ if (message.value !== "") {
18
+ writer.uint32(10).string(message.value);
19
+ }
20
+ if (message.label !== "") {
21
+ writer.uint32(18).string(message.label);
22
+ }
23
+ return writer;
24
+ },
25
+ decode(input, length) {
26
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
27
+ const end = length === undefined ? reader.len : reader.pos + length;
28
+ const message = createBaseCatalogItem();
29
+ while (reader.pos < end) {
30
+ const tag = reader.uint32();
31
+ switch (tag >>> 3) {
32
+ case 1: {
33
+ if (tag !== 10) {
34
+ break;
35
+ }
36
+ message.value = reader.string();
37
+ continue;
38
+ }
39
+ case 2: {
40
+ if (tag !== 18) {
41
+ break;
42
+ }
43
+ message.label = reader.string();
44
+ continue;
45
+ }
46
+ }
47
+ if ((tag & 7) === 4 || tag === 0) {
48
+ break;
49
+ }
50
+ reader.skip(tag & 7);
51
+ }
52
+ return message;
53
+ },
54
+ create(base) {
55
+ return exports.CatalogItem.fromPartial(base ?? {});
56
+ },
57
+ fromPartial(object) {
58
+ const message = createBaseCatalogItem();
59
+ message.value = object.value ?? "";
60
+ message.label = object.label ?? "";
61
+ return message;
62
+ },
63
+ };
64
+ //# sourceMappingURL=catalogs_products_types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalogs_products_types.js","sourceRoot":"","sources":["../../../../../src/generated/kapital/products/v1/catalogs_products_types.ts"],"names":[],"mappings":";AAAA,sDAAsD;AACtD,YAAY;AACZ,iCAAiC;AACjC,iCAAiC;AACjC,4DAA4D;;;AAE5D,oBAAoB;AACpB,kDAAqE;AAExD,QAAA,eAAe,GAAG,qBAAqB,CAAC;AAOrD,SAAS,qBAAqB;IAC5B,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC;AAClC,CAAC;AAEY,QAAA,WAAW,GAA4B;IAClD,MAAM,CAAC,OAAoB,EAAE,SAAuB,IAAI,mBAAY,EAAE;QACpE,IAAI,OAAO,CAAC,KAAK,KAAK,EAAE,EAAE,CAAC;YACzB,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QAC1C,CAAC;QACD,IAAI,OAAO,CAAC,KAAK,KAAK,EAAE,EAAE,CAAC;YACzB,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QAC1C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,MAAM,CAAC,KAAgC,EAAE,MAAe;QACtD,MAAM,MAAM,GAAG,KAAK,YAAY,mBAAY,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,mBAAY,CAAC,KAAK,CAAC,CAAC;QAC/E,MAAM,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QACpE,MAAM,OAAO,GAAG,qBAAqB,EAAE,CAAC;QACxC,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC,CAAC,CAAC,CAAC;oBACP,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAChC,SAAS;gBACX,CAAC;gBACD,KAAK,CAAC,CAAC,CAAC,CAAC;oBACP,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAChC,SAAS;gBACX,CAAC;YACH,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QACvB,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAED,MAAM,CAAC,IAA+B;QACpC,OAAO,mBAAW,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC;IAC7C,CAAC;IACD,WAAW,CAAC,MAAgC;QAC1C,MAAM,OAAO,GAAG,qBAAqB,EAAE,CAAC;QACxC,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;QACnC,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;QACnC,OAAO,OAAO,CAAC;IACjB,CAAC;CACF,CAAC"}
package/dist/index.d.ts CHANGED
@@ -43,6 +43,8 @@ export * as productGroupsV1 from './generated/kapital/product_groups/v1/product_
43
43
  export * as productGroupsTypesV1 from './generated/kapital/product_groups/v1/product_groups_types';
44
44
  export * as productsV1 from './generated/kapital/products/v1/products';
45
45
  export * as productsTypesV1 from './generated/kapital/products/v1/products_types';
46
+ export * as productsCatalogsV1 from './generated/kapital/products/v1/catalogs_products';
47
+ export * as productsCatalogsTypesV1 from './generated/kapital/products/v1/catalogs_products_types';
46
48
  export * as transactionsV1 from './generated/kapital/transactions/v1/transactions';
47
49
  export * as transactionsTypesV1 from './generated/kapital/transactions/v1/transactions_types';
48
50
  export * as disputesV1 from './generated/kapital/disputes/v1/disputes';
package/dist/index.js CHANGED
@@ -33,7 +33,8 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.grpcRuntime = exports.disputesTypesV1 = exports.disputesV1 = exports.transactionsTypesV1 = exports.transactionsV1 = exports.productsTypesV1 = exports.productsV1 = exports.productGroupsTypesV1 = exports.productGroupsV1 = exports.paymentsMethodsTypesV1 = exports.paymentsMethodsV1 = exports.paymentsTypesV1 = exports.paymentsV1 = exports.offersTypesV1 = exports.offersV1 = exports.fraudsTypesV1 = exports.fraudsV1 = exports.fraudWhitelistsTypesV1 = exports.fraudWhitelistsV1 = exports.fraudRulesTypesV1 = exports.fraudRulesV1 = exports.fraudGroupsTypesV1 = exports.fraudGroupsV1 = exports.fraudCatalogsTypesV1 = exports.fraudCatalogsV1 = exports.customersTypesV1 = exports.customersV1 = exports.creditConfigurationsTypesV1 = exports.creditConfigurationsV1 = exports.creditCatalogsTypesV1 = exports.creditCatalogsV1 = exports.creditAccountsTypesV1 = exports.creditAccountsV1 = exports.contractsTypesV1 = exports.contractsV1 = exports.commonPaginationV1 = exports.commonMetaV1 = exports.commonErrorV1 = exports.commissionsTypesV1 = exports.commissionsV1 = exports.collectionsRecoveryTypesV1 = exports.collectionsRecoveryV1 = exports.catalogsTypesV1 = exports.catalogsV1 = exports.cardsTypesV1 = exports.cardsV1 = exports.accumulatesTypesV1 = exports.accumulatesV1 = exports.accountsTypesV1 = exports.accountsV1 = void 0;
36
+ exports.disputesV1 = exports.transactionsTypesV1 = exports.transactionsV1 = exports.productsCatalogsTypesV1 = exports.productsCatalogsV1 = exports.productsTypesV1 = exports.productsV1 = exports.productGroupsTypesV1 = exports.productGroupsV1 = exports.paymentsMethodsTypesV1 = exports.paymentsMethodsV1 = exports.paymentsTypesV1 = exports.paymentsV1 = exports.offersTypesV1 = exports.offersV1 = exports.fraudsTypesV1 = exports.fraudsV1 = exports.fraudWhitelistsTypesV1 = exports.fraudWhitelistsV1 = exports.fraudRulesTypesV1 = exports.fraudRulesV1 = exports.fraudGroupsTypesV1 = exports.fraudGroupsV1 = exports.fraudCatalogsTypesV1 = exports.fraudCatalogsV1 = exports.customersTypesV1 = exports.customersV1 = exports.creditConfigurationsTypesV1 = exports.creditConfigurationsV1 = exports.creditCatalogsTypesV1 = exports.creditCatalogsV1 = exports.creditAccountsTypesV1 = exports.creditAccountsV1 = exports.contractsTypesV1 = exports.contractsV1 = exports.commonPaginationV1 = exports.commonMetaV1 = exports.commonErrorV1 = exports.commissionsTypesV1 = exports.commissionsV1 = exports.collectionsRecoveryTypesV1 = exports.collectionsRecoveryV1 = exports.catalogsTypesV1 = exports.catalogsV1 = exports.cardsTypesV1 = exports.cardsV1 = exports.accumulatesTypesV1 = exports.accumulatesV1 = exports.accountsTypesV1 = exports.accountsV1 = void 0;
37
+ exports.grpcRuntime = exports.disputesTypesV1 = void 0;
37
38
  exports.accountsV1 = __importStar(require("./generated/kapital/accounts/v1/accounts"));
38
39
  exports.accountsTypesV1 = __importStar(require("./generated/kapital/accounts/v1/accounts_types"));
39
40
  exports.accumulatesV1 = __importStar(require("./generated/kapital/accumulates/v1/accumulates_service"));
@@ -79,6 +80,8 @@ exports.productGroupsV1 = __importStar(require("./generated/kapital/product_grou
79
80
  exports.productGroupsTypesV1 = __importStar(require("./generated/kapital/product_groups/v1/product_groups_types"));
80
81
  exports.productsV1 = __importStar(require("./generated/kapital/products/v1/products"));
81
82
  exports.productsTypesV1 = __importStar(require("./generated/kapital/products/v1/products_types"));
83
+ exports.productsCatalogsV1 = __importStar(require("./generated/kapital/products/v1/catalogs_products"));
84
+ exports.productsCatalogsTypesV1 = __importStar(require("./generated/kapital/products/v1/catalogs_products_types"));
82
85
  exports.transactionsV1 = __importStar(require("./generated/kapital/transactions/v1/transactions"));
83
86
  exports.transactionsTypesV1 = __importStar(require("./generated/kapital/transactions/v1/transactions_types"));
84
87
  exports.disputesV1 = __importStar(require("./generated/kapital/disputes/v1/disputes"));
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAuE;AACvE,kGAAkF;AAClF,wGAAwF;AACxF,2GAA2F;AAC3F,8EAA8D;AAC9D,yFAAyE;AACzE,uFAAuE;AACvE,kGAAkF;AAClF,0HAA0G;AAC1G,qIAAqH;AACrH,gGAAgF;AAChF,2GAA2F;AAC3F,qFAAqE;AACrE,mFAAmE;AACnE,+FAA+E;AAC/E,0FAA0E;AAC1E,qGAAqF;AACrF,2GAA2F;AAC3F,sHAAsG;AACtG,2GAA2F;AAC3F,sHAAsG;AACtG,6HAA6G;AAC7G,wIAAwH;AACxH,0FAA0E;AAC1E,qGAAqF;AACrF,wGAAwF;AACxF,mHAAmG;AACnG,kGAAkF;AAClF,6GAA6F;AAC7F,+FAA+E;AAC/E,0GAA0F;AAC1F,8GAA8F;AAC9F,yHAAyG;AACzG,iFAAiE;AACjE,4FAA4E;AAC5E,iFAAiE;AACjE,4FAA4E;AAC5E,uFAAuE;AACvE,kGAAkF;AAClF,8GAA8F;AAC9F,yHAAyG;AACzG,wGAAwF;AACxF,mHAAmG;AACnG,uFAAuE;AACvE,kGAAkF;AAClF,mGAAmF;AACnF,8GAA8F;AAC9F,uFAAuE;AACvE,kGAAkF;AAClF,8DAA8C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAuE;AACvE,kGAAkF;AAClF,wGAAwF;AACxF,2GAA2F;AAC3F,8EAA8D;AAC9D,yFAAyE;AACzE,uFAAuE;AACvE,kGAAkF;AAClF,0HAA0G;AAC1G,qIAAqH;AACrH,gGAAgF;AAChF,2GAA2F;AAC3F,qFAAqE;AACrE,mFAAmE;AACnE,+FAA+E;AAC/E,0FAA0E;AAC1E,qGAAqF;AACrF,2GAA2F;AAC3F,sHAAsG;AACtG,2GAA2F;AAC3F,sHAAsG;AACtG,6HAA6G;AAC7G,wIAAwH;AACxH,0FAA0E;AAC1E,qGAAqF;AACrF,wGAAwF;AACxF,mHAAmG;AACnG,kGAAkF;AAClF,6GAA6F;AAC7F,+FAA+E;AAC/E,0GAA0F;AAC1F,8GAA8F;AAC9F,yHAAyG;AACzG,iFAAiE;AACjE,4FAA4E;AAC5E,iFAAiE;AACjE,4FAA4E;AAC5E,uFAAuE;AACvE,kGAAkF;AAClF,8GAA8F;AAC9F,yHAAyG;AACzG,wGAAwF;AACxF,mHAAmG;AACnG,uFAAuE;AACvE,kGAAkF;AAClF,wGAAwF;AACxF,mHAAmG;AACnG,mGAAmF;AACnF,8GAA8F;AAC9F,uFAAuE;AACvE,kGAAkF;AAClF,8DAA8C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexochihua/protos",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "private": false,
5
5
  "description": "Shared gRPC contracts and generated clients for Kapital services.",
6
6
  "license": "UNLICENSED",
@@ -87,6 +87,12 @@
87
87
  "kapital/products/v1/products_types": [
88
88
  "dist/generated/kapital/products/v1/products_types.d.ts"
89
89
  ],
90
+ "kapital/products/v1/catalogs_products": [
91
+ "dist/generated/kapital/products/v1/catalogs_products.d.ts"
92
+ ],
93
+ "kapital/products/v1/catalogs_products_types": [
94
+ "dist/generated/kapital/products/v1/catalogs_products_types.d.ts"
95
+ ],
90
96
  "kapital/customers/v1/customers": [
91
97
  "dist/generated/kapital/customers/v1/customers.d.ts"
92
98
  ],
@@ -269,6 +275,14 @@
269
275
  "types": "./dist/generated/kapital/products/v1/products_types.d.ts",
270
276
  "default": "./dist/generated/kapital/products/v1/products_types.js"
271
277
  },
278
+ "./kapital/products/v1/catalogs_products": {
279
+ "types": "./dist/generated/kapital/products/v1/catalogs_products.d.ts",
280
+ "default": "./dist/generated/kapital/products/v1/catalogs_products.js"
281
+ },
282
+ "./kapital/products/v1/catalogs_products_types": {
283
+ "types": "./dist/generated/kapital/products/v1/catalogs_products_types.d.ts",
284
+ "default": "./dist/generated/kapital/products/v1/catalogs_products_types.js"
285
+ },
272
286
  "./kapital/customers/v1/customers": {
273
287
  "types": "./dist/generated/kapital/customers/v1/customers.d.ts",
274
288
  "default": "./dist/generated/kapital/customers/v1/customers.js"
@@ -22,7 +22,11 @@ service FraudCatalogsService {
22
22
  rpc GetMtiCatalog(GetMtiCatalogRequest) returns (GetMtiCatalogResponse);
23
23
  rpc GetGroupTypeCatalogs(GetGroupTypeCatalogsRequest) returns (GetGroupTypeCatalogsResponse);
24
24
  rpc GetRuleActions(GetRuleActionsRequest) returns (GetRuleActionsResponse);
25
+ rpc GetFraudReasons(GetFraudReasonsRequest) returns (GetFraudReasonsResponse);
25
26
  rpc ExportCatalog(ExportCatalogRequest) returns (ExportCatalogResponse);
27
+ rpc GetCatRuleParameters(GetCatRuleParametersRequest) returns (GetCatRuleParametersResponse);
28
+ rpc GetCatRuleOperators(GetCatRuleOperatorsRequest) returns (GetCatRuleOperatorsResponse);
29
+ rpc GetCatPeriods(GetCatPeriodsRequest) returns (GetCatPeriodsResponse);
26
30
  }
27
31
 
28
32
  message GetCatalogListRequest {
@@ -170,8 +174,39 @@ message ExportCatalogRequest {
170
174
  bool descending = 5;
171
175
  }
172
176
 
177
+ message GetFraudReasonsRequest {}
178
+
179
+ message GetFraudReasonsResponse {
180
+ kapital.common.v1.ResponseMeta meta = 1;
181
+ int32 total = 2;
182
+ repeated CatalogItem items = 3;
183
+ }
184
+
173
185
  message ExportCatalogResponse {
174
186
  kapital.common.v1.ResponseMeta meta = 1;
175
187
  bytes file_data = 2;
176
188
  string file_name = 3;
177
189
  }
190
+
191
+ message GetCatRuleParametersRequest {}
192
+
193
+ message GetCatRuleParametersResponse {
194
+ kapital.common.v1.ResponseMeta meta = 1;
195
+ repeated CatCatalogItem rule_parameters = 2;
196
+ }
197
+
198
+ message GetCatRuleOperatorsRequest {
199
+ optional string rule_parameter = 1;
200
+ }
201
+
202
+ message GetCatRuleOperatorsResponse {
203
+ kapital.common.v1.ResponseMeta meta = 1;
204
+ repeated CatCatalogItem rule_operators = 2;
205
+ }
206
+
207
+ message GetCatPeriodsRequest {}
208
+
209
+ message GetCatPeriodsResponse {
210
+ kapital.common.v1.ResponseMeta meta = 1;
211
+ repeated CatCatalogItem periods = 2;
212
+ }
@@ -79,3 +79,8 @@ message MtiItem {
79
79
  bool deleted = 5;
80
80
  string institution_id = 6;
81
81
  }
82
+
83
+ message CatCatalogItem {
84
+ string value = 1;
85
+ string label = 2;
86
+ }
@@ -27,6 +27,7 @@ message CreateFraudRequest {
27
27
  string index_id = 2;
28
28
  string initial_comment = 3;
29
29
  string user_id = 4;
30
+ string fraud_reason = 6;
30
31
  google.protobuf.Struct transaction_data = 5;
31
32
  }
32
33
 
@@ -54,6 +55,7 @@ message GetFraudsRequest {
54
55
  string response_code = 16;
55
56
  string report_start_date = 17;
56
57
  string report_end_date = 18;
58
+ string fraud_reason = 19;
57
59
  }
58
60
 
59
61
  message GetFraudsResponse {
@@ -25,6 +25,7 @@ message Fraud {
25
25
  string updated_by = 9;
26
26
  string created_at = 10;
27
27
  string updated_at = 11;
28
+ string fraud_reason = 13;
28
29
  google.protobuf.Struct transaction_data = 12;
29
30
  }
30
31
 
@@ -0,0 +1,37 @@
1
+ syntax = "proto3";
2
+
3
+ package kapital.products.v1;
4
+
5
+ option go_package = "kapital/products/v1;productsv1";
6
+
7
+ import "kapital/common/v1/meta.proto";
8
+ import "kapital/products/v1/catalogs_products_types.proto";
9
+
10
+ service CatalogsProductService {
11
+ rpc GetCatRuleParameters(GetCatRuleParametersRequest) returns (GetCatRuleParametersResponse);
12
+ rpc GetCatRuleOperators(GetCatRuleOperatorsRequest) returns (GetCatRuleOperatorsResponse);
13
+ rpc GetCatPeriods(GetCatPeriodsRequest) returns (GetCatPeriodsResponse);
14
+ }
15
+
16
+ message GetCatRuleParametersRequest {}
17
+
18
+ message GetCatRuleParametersResponse {
19
+ kapital.common.v1.ResponseMeta meta = 1;
20
+ repeated CatalogItem rule_parameters = 2;
21
+ }
22
+
23
+ message GetCatRuleOperatorsRequest {
24
+ optional string rule_parameter = 1;
25
+ }
26
+
27
+ message GetCatRuleOperatorsResponse {
28
+ kapital.common.v1.ResponseMeta meta = 1;
29
+ repeated CatalogItem rule_operators = 2;
30
+ }
31
+
32
+ message GetCatPeriodsRequest {}
33
+
34
+ message GetCatPeriodsResponse {
35
+ kapital.common.v1.ResponseMeta meta = 1;
36
+ repeated CatalogItem periods = 2;
37
+ }
@@ -0,0 +1,10 @@
1
+ syntax = "proto3";
2
+
3
+ package kapital.products.v1;
4
+
5
+ option go_package = "kapital/products/v1;productsv1";
6
+
7
+ message CatalogItem {
8
+ string value = 1;
9
+ string label = 2;
10
+ }