@ogcio/building-blocks-sdk 0.2.70 → 0.2.72
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/.gitleaksignore +10 -1
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/client/clients/audit/index.d.ts +132 -0
- package/dist/client/clients/audit/index.d.ts.map +1 -0
- package/dist/client/clients/audit/index.js +14 -0
- package/dist/client/clients/audit/index.js.map +1 -0
- package/dist/client/clients/audit/schema.d.ts +246 -0
- package/dist/client/clients/audit/schema.d.ts.map +1 -0
- package/dist/client/clients/audit/schema.js +2 -0
- package/dist/client/clients/audit/schema.js.map +1 -0
- package/dist/client/clients/payments/index.d.ts +138 -2
- package/dist/client/clients/payments/index.d.ts.map +1 -1
- package/dist/client/clients/payments/index.js +9 -0
- package/dist/client/clients/payments/index.js.map +1 -1
- package/dist/client/clients/payments/schema.d.ts +206 -4
- package/dist/client/clients/payments/schema.d.ts.map +1 -1
- package/dist/clients-configurations/clients-configuration.json +10 -2
- package/dist/types/index.d.ts +9 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
- package/src/client/clients/audit/index.ts +25 -0
- package/src/client/clients/audit/open-api-definition.json +433 -0
- package/src/client/clients/audit/schema.ts +245 -0
- package/src/client/clients/payments/index.ts +15 -0
- package/src/client/clients/payments/open-api-definition.json +966 -38
- package/src/client/clients/payments/schema.ts +206 -4
- package/src/clients-configurations/clients-configuration.json +10 -2
- package/src/types/index.ts +10 -2
package/.gitleaksignore
CHANGED
|
@@ -41,4 +41,13 @@ src/client/clients/payments/open-api-definition.json:generic-api-key:12714
|
|
|
41
41
|
/src/src/client/clients/payments/schema.ts:jwt:1983
|
|
42
42
|
/src/src/client/clients/payments/schema.ts:generic-api-key:4573
|
|
43
43
|
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:12714
|
|
44
|
-
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:13120
|
|
44
|
+
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:13120
|
|
45
|
+
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:6996
|
|
46
|
+
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:12703
|
|
47
|
+
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:13327
|
|
48
|
+
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:14048
|
|
49
|
+
/src/src/client/clients/payments/schema.ts:jwt:2005
|
|
50
|
+
/src/src/client/clients/payments/schema.ts:generic-api-key:1898
|
|
51
|
+
/src/src/client/clients/payments/open-api-definition.json:generic-api-key:4106
|
|
52
|
+
/src/src/client/clients/payments/open-api-definition.json:jwt:4310
|
|
53
|
+
/src/src/client/clients/payments/schema.ts:generic-api-key:4775
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.72](https://github.com/ogcio/building-blocks-sdk/compare/@ogcio/building-blocks-sdk@v0.2.71...@ogcio/building-blocks-sdk@v0.2.72) (2026-01-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **32963:** payments search transactions call ([#307](https://github.com/ogcio/building-blocks-sdk/issues/307)) ([b630b0b](https://github.com/ogcio/building-blocks-sdk/commit/b630b0b762a0337de442757c3583ab7e943d90b5))
|
|
9
|
+
|
|
10
|
+
## [0.2.71](https://github.com/ogcio/building-blocks-sdk/compare/@ogcio/building-blocks-sdk@v0.2.70...@ogcio/building-blocks-sdk@v0.2.71) (2026-01-08)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **audit-collector:** AB[#33619](https://github.com/ogcio/building-blocks-sdk/issues/33619) add audit collector ([#305](https://github.com/ogcio/building-blocks-sdk/issues/305)) ([19fad02](https://github.com/ogcio/building-blocks-sdk/commit/19fad02e725fdba50dd187a9bd9569cf60d3c42a))
|
|
16
|
+
|
|
3
17
|
## [0.2.70](https://github.com/ogcio/building-blocks-sdk/compare/@ogcio/building-blocks-sdk@v0.2.69...@ogcio/building-blocks-sdk@v0.2.70) (2025-12-17)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import type createClient from "openapi-fetch";
|
|
2
|
+
import { BaseClient } from "../../base-client.js";
|
|
3
|
+
import type { paths } from "./schema.js";
|
|
4
|
+
export declare class AuditCollector extends BaseClient<paths> {
|
|
5
|
+
protected client: ReturnType<typeof createClient<paths>>;
|
|
6
|
+
protected serviceName: "auditCollector";
|
|
7
|
+
sendLogs(logs: NonNullable<paths["/api/v1/audit-logs/"]["post"]["requestBody"]>["content"]["application/json"]): Promise<import("../../utils/client-utils.js").DataResponseValue<{
|
|
8
|
+
parameters: {
|
|
9
|
+
query?: never;
|
|
10
|
+
header?: never;
|
|
11
|
+
path?: never;
|
|
12
|
+
cookie?: never;
|
|
13
|
+
};
|
|
14
|
+
requestBody?: {
|
|
15
|
+
content: {
|
|
16
|
+
"application/json": {
|
|
17
|
+
application_id: string;
|
|
18
|
+
application_version?: string;
|
|
19
|
+
user_id?: string;
|
|
20
|
+
user_email_address?: string;
|
|
21
|
+
action_type: "read" | "create" | "update" | "delete" | "list";
|
|
22
|
+
resource_type: string;
|
|
23
|
+
resource_id?: string;
|
|
24
|
+
client_timestamp: string;
|
|
25
|
+
successful?: boolean | null;
|
|
26
|
+
failure_reason?: string | null;
|
|
27
|
+
server_id?: string | null;
|
|
28
|
+
metadata: {
|
|
29
|
+
[key: string]: unknown;
|
|
30
|
+
};
|
|
31
|
+
parent_log_entry_id?: string | null;
|
|
32
|
+
}[];
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
responses: {
|
|
36
|
+
200: {
|
|
37
|
+
headers: {
|
|
38
|
+
[name: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
content: {
|
|
41
|
+
"application/json": {
|
|
42
|
+
data: {
|
|
43
|
+
id: string;
|
|
44
|
+
}[];
|
|
45
|
+
metadata?: {
|
|
46
|
+
links?: {
|
|
47
|
+
self: {
|
|
48
|
+
href?: string;
|
|
49
|
+
};
|
|
50
|
+
next?: {
|
|
51
|
+
href?: string;
|
|
52
|
+
};
|
|
53
|
+
prev?: {
|
|
54
|
+
href?: string;
|
|
55
|
+
};
|
|
56
|
+
first: {
|
|
57
|
+
href?: string;
|
|
58
|
+
};
|
|
59
|
+
last: {
|
|
60
|
+
href?: string;
|
|
61
|
+
};
|
|
62
|
+
pages: {
|
|
63
|
+
[key: string]: {
|
|
64
|
+
href?: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
totalCount?: number;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
"4XX": {
|
|
74
|
+
headers: {
|
|
75
|
+
[name: string]: unknown;
|
|
76
|
+
};
|
|
77
|
+
content: {
|
|
78
|
+
"application/json": {
|
|
79
|
+
code: string;
|
|
80
|
+
detail: string;
|
|
81
|
+
requestId: string;
|
|
82
|
+
name: string;
|
|
83
|
+
validation?: {
|
|
84
|
+
fieldName: string;
|
|
85
|
+
message: string;
|
|
86
|
+
}[];
|
|
87
|
+
validationContext?: string;
|
|
88
|
+
statusCode: number;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
"5XX": {
|
|
93
|
+
headers: {
|
|
94
|
+
[name: string]: unknown;
|
|
95
|
+
};
|
|
96
|
+
content: {
|
|
97
|
+
"application/json": {
|
|
98
|
+
code: string;
|
|
99
|
+
detail: string;
|
|
100
|
+
requestId: string;
|
|
101
|
+
name: string;
|
|
102
|
+
validation?: {
|
|
103
|
+
fieldName: string;
|
|
104
|
+
message: string;
|
|
105
|
+
}[];
|
|
106
|
+
validationContext?: string;
|
|
107
|
+
statusCode: number;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
}, {
|
|
113
|
+
body: {
|
|
114
|
+
application_id: string;
|
|
115
|
+
application_version?: string;
|
|
116
|
+
user_id?: string;
|
|
117
|
+
user_email_address?: string;
|
|
118
|
+
action_type: "read" | "create" | "update" | "delete" | "list";
|
|
119
|
+
resource_type: string;
|
|
120
|
+
resource_id?: string;
|
|
121
|
+
client_timestamp: string;
|
|
122
|
+
successful?: boolean | null;
|
|
123
|
+
failure_reason?: string | null;
|
|
124
|
+
server_id?: string | null;
|
|
125
|
+
metadata: {
|
|
126
|
+
[key: string]: unknown;
|
|
127
|
+
};
|
|
128
|
+
parent_log_entry_id?: string | null;
|
|
129
|
+
}[];
|
|
130
|
+
}>>;
|
|
131
|
+
}
|
|
132
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/client/clients/audit/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,YAAY,MAAM,eAAe,CAAC;AAE9C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEzC,qBAAa,cAAe,SAAQ,UAAU,CAAC,KAAK,CAAC;IACnD,UAAkB,MAAM,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC;IACjE,SAAS,CAAC,WAAW,mBAAmB;IAElC,QAAQ,CACZ,IAAI,EAAE,WAAW,CACf,KAAK,CAAC,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CACpD,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC;;iBAY4xB,CAAC;kBAA2B,CAAC;gBAAyB,CAAC;kBAA2B,CAAC;;;;;;uCAA4gB,CAAC;2BAAyM,CAAC;sCAAgQ,CAAC;;;+BAA8sB,CAAC;;8BAA2S,CAAC;kCAAoD,CAAC;6BAA8C,CAAC;;;;uCAAub,CAAC;;;;;;;;;;;;;;gCAAq+B,CAAC;iCAA0I,CAAC;;wCAA+K,CAAC;;oCAAiF,CAAC;wCAA8N,CAAC;;oCAAiF,CAAC;wCAAkO,CAAC;;;wCAAwP,CAAC;;;wCAAuP,CAAC;;;;4CAAkU,CAAC;;;;sCAAiQ,CAAC;;;;;;;;;;;;;;;kCAAu5B,CAAC;;;;yCAAsK,CAAC;;;;;;;;;;;;;;;kCAAw6B,CAAC;;;;yCAAsK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;CAD78Q"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AUDIT_COLLECTOR } from "../../../types/index.js";
|
|
2
|
+
import { BaseClient } from "../../base-client.js";
|
|
3
|
+
import { formatError, formatResponse } from "../../utils/client-utils.js";
|
|
4
|
+
export class AuditCollector extends BaseClient {
|
|
5
|
+
serviceName = AUDIT_COLLECTOR;
|
|
6
|
+
async sendLogs(logs) {
|
|
7
|
+
return this.client
|
|
8
|
+
.POST("/api/v1/audit-logs/", {
|
|
9
|
+
body: logs,
|
|
10
|
+
})
|
|
11
|
+
.then((response) => formatResponse(response, this.serviceName, this.logger), (reason) => formatError(reason, this.serviceName, this.logger));
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/client/clients/audit/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAG1E,MAAM,OAAO,cAAe,SAAQ,UAAiB;IAEzC,WAAW,GAAG,eAAe,CAAC;IAExC,KAAK,CAAC,QAAQ,CACZ,IAEgC;QAEhC,OAAO,IAAI,CAAC,MAAM;aACf,IAAI,CAAC,qBAAqB,EAAE;YAC3B,IAAI,EAAE,IAAI;SACX,CAAC;aACD,IAAI,CACH,CAAC,QAAQ,EAAE,EAAE,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC,EACrE,CAAC,MAAM,EAAE,EAAE,CAAC,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC,CAC/D,CAAC;IACN,CAAC;CACF"}
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
export interface paths {
|
|
2
|
+
"/health": {
|
|
3
|
+
parameters: {
|
|
4
|
+
query?: never;
|
|
5
|
+
header?: never;
|
|
6
|
+
path?: never;
|
|
7
|
+
cookie?: never;
|
|
8
|
+
};
|
|
9
|
+
/** @description It checks the current health status of the APIs, pinging all the related items */
|
|
10
|
+
get: {
|
|
11
|
+
parameters: {
|
|
12
|
+
query?: never;
|
|
13
|
+
header?: never;
|
|
14
|
+
path?: never;
|
|
15
|
+
cookie?: never;
|
|
16
|
+
};
|
|
17
|
+
requestBody?: never;
|
|
18
|
+
responses: {
|
|
19
|
+
/** @description Default Response */
|
|
20
|
+
200: {
|
|
21
|
+
headers: {
|
|
22
|
+
[name: string]: unknown;
|
|
23
|
+
};
|
|
24
|
+
content?: never;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
put?: never;
|
|
29
|
+
post?: never;
|
|
30
|
+
delete?: never;
|
|
31
|
+
options?: never;
|
|
32
|
+
head?: never;
|
|
33
|
+
patch?: never;
|
|
34
|
+
trace?: never;
|
|
35
|
+
};
|
|
36
|
+
"/api/v1/audit-logs/": {
|
|
37
|
+
parameters: {
|
|
38
|
+
query?: never;
|
|
39
|
+
header?: never;
|
|
40
|
+
path?: never;
|
|
41
|
+
cookie?: never;
|
|
42
|
+
};
|
|
43
|
+
get?: never;
|
|
44
|
+
put?: never;
|
|
45
|
+
post: operations["createAuditLog"];
|
|
46
|
+
delete?: never;
|
|
47
|
+
options?: never;
|
|
48
|
+
head?: never;
|
|
49
|
+
patch?: never;
|
|
50
|
+
trace?: never;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
export type webhooks = Record<string, never>;
|
|
54
|
+
export interface components {
|
|
55
|
+
schemas: never;
|
|
56
|
+
responses: never;
|
|
57
|
+
parameters: never;
|
|
58
|
+
requestBodies: never;
|
|
59
|
+
headers: never;
|
|
60
|
+
pathItems: never;
|
|
61
|
+
}
|
|
62
|
+
export type $defs = Record<string, never>;
|
|
63
|
+
export interface operations {
|
|
64
|
+
createAuditLog: {
|
|
65
|
+
parameters: {
|
|
66
|
+
query?: never;
|
|
67
|
+
header?: never;
|
|
68
|
+
path?: never;
|
|
69
|
+
cookie?: never;
|
|
70
|
+
};
|
|
71
|
+
requestBody?: {
|
|
72
|
+
content: {
|
|
73
|
+
"application/json": {
|
|
74
|
+
/**
|
|
75
|
+
* @description Identifies the client application/service
|
|
76
|
+
* @example my-app
|
|
77
|
+
*/
|
|
78
|
+
application_id: string;
|
|
79
|
+
/**
|
|
80
|
+
* @description Optional application version for schema tracking
|
|
81
|
+
* @example 1.4.3
|
|
82
|
+
*/
|
|
83
|
+
application_version?: string;
|
|
84
|
+
/**
|
|
85
|
+
* @description JWT subject; null indicates M2M action
|
|
86
|
+
* @example user-123
|
|
87
|
+
*/
|
|
88
|
+
user_id?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Format: email
|
|
91
|
+
* @description User email for human-readable context
|
|
92
|
+
* @example user@example.com
|
|
93
|
+
*/
|
|
94
|
+
user_email_address?: string;
|
|
95
|
+
/**
|
|
96
|
+
* @description Operation: Read, Create, Update, Delete, etc.
|
|
97
|
+
* @example create
|
|
98
|
+
* @enum {unknown}
|
|
99
|
+
*/
|
|
100
|
+
action_type: "read" | "create" | "update" | "delete" | "list";
|
|
101
|
+
/**
|
|
102
|
+
* @description Entity type affected: user, message, etc.
|
|
103
|
+
* @example user
|
|
104
|
+
*/
|
|
105
|
+
resource_type: string;
|
|
106
|
+
/**
|
|
107
|
+
* @description Specific resource identifier; null for list operations
|
|
108
|
+
* @example user-123
|
|
109
|
+
*/
|
|
110
|
+
resource_id?: string;
|
|
111
|
+
/**
|
|
112
|
+
* Format: date-time
|
|
113
|
+
* @description ISO 8601 client-reported timestamp
|
|
114
|
+
* @example 2025-12-19T10:30:00Z
|
|
115
|
+
*/
|
|
116
|
+
client_timestamp: string;
|
|
117
|
+
successful?: boolean | null;
|
|
118
|
+
failure_reason?: string | null;
|
|
119
|
+
server_id?: string | null;
|
|
120
|
+
/**
|
|
121
|
+
* @description Extensible JSON context for event
|
|
122
|
+
* @example {
|
|
123
|
+
* "request_id": "req-123",
|
|
124
|
+
* "source": "web"
|
|
125
|
+
* }
|
|
126
|
+
*/
|
|
127
|
+
metadata: {
|
|
128
|
+
[key: string]: unknown;
|
|
129
|
+
};
|
|
130
|
+
parent_log_entry_id?: string | null;
|
|
131
|
+
}[];
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
responses: {
|
|
135
|
+
/** @description Default Response */
|
|
136
|
+
200: {
|
|
137
|
+
headers: {
|
|
138
|
+
[name: string]: unknown;
|
|
139
|
+
};
|
|
140
|
+
content: {
|
|
141
|
+
"application/json": {
|
|
142
|
+
/**
|
|
143
|
+
* @description Multiple audit log entries created
|
|
144
|
+
* @example [
|
|
145
|
+
* {
|
|
146
|
+
* "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
|
|
147
|
+
* },
|
|
148
|
+
* {
|
|
149
|
+
* "id": "9c858901-8a57-4791-81fe-4c455b099bc9"
|
|
150
|
+
* }
|
|
151
|
+
* ]
|
|
152
|
+
*/
|
|
153
|
+
data: {
|
|
154
|
+
/** Format: uuid */
|
|
155
|
+
id: string;
|
|
156
|
+
}[];
|
|
157
|
+
metadata?: {
|
|
158
|
+
/** @description Object containing the links to the related endpoints */
|
|
159
|
+
links?: {
|
|
160
|
+
self: {
|
|
161
|
+
/** @description URL pointing to the request itself */
|
|
162
|
+
href?: string;
|
|
163
|
+
};
|
|
164
|
+
next?: {
|
|
165
|
+
/** @description URL pointing to the next page of results in a paginated response. If there are no more results, this field may be omitted */
|
|
166
|
+
href?: string;
|
|
167
|
+
};
|
|
168
|
+
prev?: {
|
|
169
|
+
/** @description URL pointing to the previous page of results in a paginated response. If there are no more results, this field may be omitted */
|
|
170
|
+
href?: string;
|
|
171
|
+
};
|
|
172
|
+
first: {
|
|
173
|
+
/** @description URL pointing to the first page of results in a paginated response */
|
|
174
|
+
href?: string;
|
|
175
|
+
};
|
|
176
|
+
last: {
|
|
177
|
+
/** @description URL pointing to the first page of results in a paginated response */
|
|
178
|
+
href?: string;
|
|
179
|
+
};
|
|
180
|
+
/** @description It may contain a list of other useful URLs, e.g. one entry for page:'page 1', 'page 2' */
|
|
181
|
+
pages: {
|
|
182
|
+
[key: string]: {
|
|
183
|
+
href?: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
/** @description Number representing the total number of available items */
|
|
188
|
+
totalCount?: number;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
/** @description Default Response */
|
|
194
|
+
"4XX": {
|
|
195
|
+
headers: {
|
|
196
|
+
[name: string]: unknown;
|
|
197
|
+
};
|
|
198
|
+
content: {
|
|
199
|
+
"application/json": {
|
|
200
|
+
/** @description Code used to categorize the error */
|
|
201
|
+
code: string;
|
|
202
|
+
/** @description Description of the error */
|
|
203
|
+
detail: string;
|
|
204
|
+
/** @description Unique request id. This one will be used to troubleshoot the problems */
|
|
205
|
+
requestId: string;
|
|
206
|
+
/** @description Name of the error type */
|
|
207
|
+
name: string;
|
|
208
|
+
/** @description List of the validation errors */
|
|
209
|
+
validation?: {
|
|
210
|
+
fieldName: string;
|
|
211
|
+
message: string;
|
|
212
|
+
}[];
|
|
213
|
+
validationContext?: string;
|
|
214
|
+
statusCode: number;
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
/** @description Default Response */
|
|
219
|
+
"5XX": {
|
|
220
|
+
headers: {
|
|
221
|
+
[name: string]: unknown;
|
|
222
|
+
};
|
|
223
|
+
content: {
|
|
224
|
+
"application/json": {
|
|
225
|
+
/** @description Code used to categorize the error */
|
|
226
|
+
code: string;
|
|
227
|
+
/** @description Description of the error */
|
|
228
|
+
detail: string;
|
|
229
|
+
/** @description Unique request id. This one will be used to troubleshoot the problems */
|
|
230
|
+
requestId: string;
|
|
231
|
+
/** @description Name of the error type */
|
|
232
|
+
name: string;
|
|
233
|
+
/** @description List of the validation errors */
|
|
234
|
+
validation?: {
|
|
235
|
+
fieldName: string;
|
|
236
|
+
message: string;
|
|
237
|
+
}[];
|
|
238
|
+
validationContext?: string;
|
|
239
|
+
statusCode: number;
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
}
|
|
246
|
+
//# sourceMappingURL=schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/client/clients/audit/schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../src/client/clients/audit/schema.ts"],"names":[],"mappings":""}
|
|
@@ -173,6 +173,8 @@ export declare class Payments extends BaseClient<paths> {
|
|
|
173
173
|
} | {
|
|
174
174
|
merchantCode: string;
|
|
175
175
|
installationId: string;
|
|
176
|
+
username: string;
|
|
177
|
+
password: string;
|
|
176
178
|
} | {
|
|
177
179
|
merchantId: string;
|
|
178
180
|
sharedSecret: string;
|
|
@@ -2064,7 +2066,6 @@ export declare class Payments extends BaseClient<paths> {
|
|
|
2064
2066
|
"application/json": {
|
|
2065
2067
|
intentId: string;
|
|
2066
2068
|
amount: string;
|
|
2067
|
-
providerId: string;
|
|
2068
2069
|
paymentRequestId: string;
|
|
2069
2070
|
token?: string;
|
|
2070
2071
|
};
|
|
@@ -2143,7 +2144,6 @@ export declare class Payments extends BaseClient<paths> {
|
|
|
2143
2144
|
body: {
|
|
2144
2145
|
intentId: string;
|
|
2145
2146
|
amount: string;
|
|
2146
|
-
providerId: string;
|
|
2147
2147
|
paymentRequestId: string;
|
|
2148
2148
|
token?: string;
|
|
2149
2149
|
};
|
|
@@ -2530,6 +2530,142 @@ export declare class Payments extends BaseClient<paths> {
|
|
|
2530
2530
|
};
|
|
2531
2531
|
};
|
|
2532
2532
|
}>>;
|
|
2533
|
+
searchTransactions(transactionIds: paths["/api/v1/transactions/search"]["post"]["requestBody"]["content"]["application/json"]["transactionIds"]): Promise<import("../../utils/client-utils.js").DataResponseValue<{
|
|
2534
|
+
parameters: {
|
|
2535
|
+
query?: never;
|
|
2536
|
+
header?: never;
|
|
2537
|
+
path?: never;
|
|
2538
|
+
cookie?: never;
|
|
2539
|
+
};
|
|
2540
|
+
requestBody: {
|
|
2541
|
+
content: {
|
|
2542
|
+
"application/json": {
|
|
2543
|
+
transactionIds: string[];
|
|
2544
|
+
};
|
|
2545
|
+
};
|
|
2546
|
+
};
|
|
2547
|
+
responses: {
|
|
2548
|
+
200: {
|
|
2549
|
+
headers: {
|
|
2550
|
+
[name: string]: unknown;
|
|
2551
|
+
};
|
|
2552
|
+
content: {
|
|
2553
|
+
"application/json": {
|
|
2554
|
+
data: {
|
|
2555
|
+
transactionId: string;
|
|
2556
|
+
status: "initiated" | "pending" | "succeeded" | "cancelled" | "cancellation_requested" | "failed" | "refunded" | "refund_failed";
|
|
2557
|
+
amount: number;
|
|
2558
|
+
extPaymentId: string;
|
|
2559
|
+
paymentProviderId: string;
|
|
2560
|
+
updatedAt: string;
|
|
2561
|
+
title: {
|
|
2562
|
+
en: string;
|
|
2563
|
+
ga?: string;
|
|
2564
|
+
};
|
|
2565
|
+
userId: string;
|
|
2566
|
+
metadata: {
|
|
2567
|
+
runId?: string;
|
|
2568
|
+
journeyId?: string;
|
|
2569
|
+
journeyTitle?: {
|
|
2570
|
+
en: string;
|
|
2571
|
+
ga?: string;
|
|
2572
|
+
};
|
|
2573
|
+
redirectUrls?: {
|
|
2574
|
+
en: string;
|
|
2575
|
+
ga: string;
|
|
2576
|
+
};
|
|
2577
|
+
amount?: string;
|
|
2578
|
+
providerData?: {
|
|
2579
|
+
chargeId: string;
|
|
2580
|
+
};
|
|
2581
|
+
};
|
|
2582
|
+
description: {
|
|
2583
|
+
en: string;
|
|
2584
|
+
ga?: string;
|
|
2585
|
+
};
|
|
2586
|
+
providerName: string;
|
|
2587
|
+
providerType: string;
|
|
2588
|
+
paymentRequestId: string;
|
|
2589
|
+
}[];
|
|
2590
|
+
metadata?: {
|
|
2591
|
+
links?: {
|
|
2592
|
+
self: {
|
|
2593
|
+
href?: string;
|
|
2594
|
+
};
|
|
2595
|
+
next?: {
|
|
2596
|
+
href?: string;
|
|
2597
|
+
};
|
|
2598
|
+
prev?: {
|
|
2599
|
+
href?: string;
|
|
2600
|
+
};
|
|
2601
|
+
first: {
|
|
2602
|
+
href?: string;
|
|
2603
|
+
};
|
|
2604
|
+
last: {
|
|
2605
|
+
href?: string;
|
|
2606
|
+
};
|
|
2607
|
+
pages: {
|
|
2608
|
+
[key: string]: {
|
|
2609
|
+
href?: string;
|
|
2610
|
+
};
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
2613
|
+
totalCount?: number;
|
|
2614
|
+
};
|
|
2615
|
+
};
|
|
2616
|
+
};
|
|
2617
|
+
};
|
|
2618
|
+
401: {
|
|
2619
|
+
headers: {
|
|
2620
|
+
[name: string]: unknown;
|
|
2621
|
+
};
|
|
2622
|
+
content: {
|
|
2623
|
+
"application/json": {
|
|
2624
|
+
code: string;
|
|
2625
|
+
detail: string;
|
|
2626
|
+
requestId: string;
|
|
2627
|
+
name: string;
|
|
2628
|
+
validation?: unknown;
|
|
2629
|
+
validationContext?: string;
|
|
2630
|
+
};
|
|
2631
|
+
};
|
|
2632
|
+
};
|
|
2633
|
+
404: {
|
|
2634
|
+
headers: {
|
|
2635
|
+
[name: string]: unknown;
|
|
2636
|
+
};
|
|
2637
|
+
content: {
|
|
2638
|
+
"application/json": {
|
|
2639
|
+
code: string;
|
|
2640
|
+
detail: string;
|
|
2641
|
+
requestId: string;
|
|
2642
|
+
name: string;
|
|
2643
|
+
validation?: unknown;
|
|
2644
|
+
validationContext?: string;
|
|
2645
|
+
};
|
|
2646
|
+
};
|
|
2647
|
+
};
|
|
2648
|
+
500: {
|
|
2649
|
+
headers: {
|
|
2650
|
+
[name: string]: unknown;
|
|
2651
|
+
};
|
|
2652
|
+
content: {
|
|
2653
|
+
"application/json": {
|
|
2654
|
+
code: string;
|
|
2655
|
+
detail: string;
|
|
2656
|
+
requestId: string;
|
|
2657
|
+
name: string;
|
|
2658
|
+
validation?: unknown;
|
|
2659
|
+
validationContext?: string;
|
|
2660
|
+
};
|
|
2661
|
+
};
|
|
2662
|
+
};
|
|
2663
|
+
};
|
|
2664
|
+
}, {
|
|
2665
|
+
body: {
|
|
2666
|
+
transactionIds: string[];
|
|
2667
|
+
};
|
|
2668
|
+
}>>;
|
|
2533
2669
|
/**
|
|
2534
2670
|
* Citizen
|
|
2535
2671
|
*/
|