@vqnguyen1/piece-fis-ibs-cards 0.0.3 → 0.0.5

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.
@@ -0,0 +1,170 @@
1
+ import { createAction, Property } from '@activepieces/pieces-framework';
2
+ import { httpClient, HttpMethod } from '@activepieces/pieces-common';
3
+ import { fisIbsCardsAuth } from '../..';
4
+
5
+ // Helper function to build headers
6
+ function buildHeaders(auth: any, ibsAuthorization?: string): Record<string, string> {
7
+ const headers: Record<string, string> = {
8
+ 'Content-Type': 'application/json',
9
+ 'organization-id': auth.organizationId,
10
+ 'source-id': auth.sourceId,
11
+ 'application-id': auth.applicationId,
12
+ 'uuid': crypto.randomUUID(),
13
+ 'ibs-authorization': ibsAuthorization || auth.ibsAuthorization,
14
+ };
15
+ if (auth.securityTokenType) {
16
+ headers['security-token-type'] = auth.securityTokenType;
17
+ }
18
+ return headers;
19
+ }
20
+
21
+ // ============================================
22
+ // IBS-Information-Security.json - Security & Authentication
23
+ // ============================================
24
+
25
+ export const security_ping = createAction({
26
+ auth: fisIbsCardsAuth,
27
+ name: 'security_ping',
28
+ displayName: 'Security - Ping Host System',
29
+ description: 'Perform ping of host system to determine if connection is valid',
30
+ props: {
31
+ ibsAuthorization: Property.ShortText({
32
+ displayName: 'IBS Authorization',
33
+ description: 'IBS Authorization token (if different from connection)',
34
+ required: false,
35
+ }),
36
+ },
37
+ async run(context) {
38
+ const auth = context.auth as any;
39
+ const headers = buildHeaders(auth, context.propsValue.ibsAuthorization);
40
+
41
+ const response = await httpClient.sendRequest({
42
+ method: HttpMethod.GET,
43
+ url: `${auth.baseUrl}/IBSSZ/v4/ping`,
44
+ headers,
45
+ });
46
+ return response.body;
47
+ },
48
+ });
49
+
50
+ export const security_change_racf_password = createAction({
51
+ auth: fisIbsCardsAuth,
52
+ name: 'security_change_racf_password',
53
+ displayName: 'Security - Change RACF Password',
54
+ description: 'Change password for current user ID within FIS RACF security environment',
55
+ props: {
56
+ ibsAuthorization: Property.ShortText({
57
+ displayName: 'IBS Authorization',
58
+ description: 'IBS Authorization token (if different from connection)',
59
+ required: false,
60
+ }),
61
+ newPassword: Property.ShortText({
62
+ displayName: 'New Password',
63
+ description: 'The new RACF password (14-98 characters)',
64
+ required: true,
65
+ }),
66
+ applID: Property.ShortText({
67
+ displayName: 'Application ID',
68
+ description: 'RACF-defined application ID (optional)',
69
+ required: false,
70
+ }),
71
+ termID: Property.ShortText({
72
+ displayName: 'Terminal ID',
73
+ description: 'RACF-defined terminal ID (optional)',
74
+ required: false,
75
+ }),
76
+ altRoutID: Property.ShortText({
77
+ displayName: 'Alternate Routing ID',
78
+ description: 'Alternate routing ID (optional)',
79
+ required: false,
80
+ }),
81
+ },
82
+ async run(context) {
83
+ const auth = context.auth as any;
84
+ const headers = buildHeaders(auth, context.propsValue.ibsAuthorization);
85
+
86
+ const body: Record<string, any> = {
87
+ racfPassword: {
88
+ newPwd: context.propsValue.newPassword,
89
+ },
90
+ };
91
+
92
+ if (context.propsValue.applID) {
93
+ body['racfPassword']['applID'] = context.propsValue.applID;
94
+ }
95
+ if (context.propsValue.termID) {
96
+ body['racfPassword']['termID'] = context.propsValue.termID;
97
+ }
98
+ if (context.propsValue.altRoutID) {
99
+ body['racfPassword']['altRoutID'] = context.propsValue.altRoutID;
100
+ }
101
+
102
+ const response = await httpClient.sendRequest({
103
+ method: HttpMethod.PUT,
104
+ url: `${auth.baseUrl}/IBSSZ/v4/racf-password`,
105
+ headers,
106
+ body,
107
+ });
108
+ return response.body;
109
+ },
110
+ });
111
+
112
+ export const security_validate_racf_user = createAction({
113
+ auth: fisIbsCardsAuth,
114
+ name: 'security_validate_racf_user',
115
+ displayName: 'Security - Validate RACF User',
116
+ description: 'Validate user within FIS RACF security environment',
117
+ props: {
118
+ ibsAuthorization: Property.ShortText({
119
+ displayName: 'IBS Authorization',
120
+ description: 'IBS Authorization token (if different from connection)',
121
+ required: false,
122
+ }),
123
+ altRoutId: Property.ShortText({
124
+ displayName: 'Alternate Routing ID',
125
+ description: 'Alternate routing ID for system routing (optional)',
126
+ required: false,
127
+ }),
128
+ aceSysId: Property.StaticDropdown({
129
+ displayName: 'ACE System ID',
130
+ description: 'Which ACE system to perform the transaction',
131
+ required: false,
132
+ options: {
133
+ options: [
134
+ { label: 'TEST - Test System', value: 'TEST' },
135
+ { label: 'PROD - Production System', value: 'PROD' },
136
+ ],
137
+ },
138
+ }),
139
+ currentPassword: Property.ShortText({
140
+ displayName: 'Current Password',
141
+ description: 'The user\'s current password',
142
+ required: false,
143
+ }),
144
+ termID: Property.ShortText({
145
+ displayName: 'Terminal ID',
146
+ description: 'RACF-defined terminal ID (optional)',
147
+ required: false,
148
+ }),
149
+ },
150
+ async run(context) {
151
+ const auth = context.auth as any;
152
+ const headers = buildHeaders(auth, context.propsValue.ibsAuthorization);
153
+
154
+ const params = new URLSearchParams();
155
+ if (context.propsValue.altRoutId) params.append('altRoutId', context.propsValue.altRoutId);
156
+ if (context.propsValue.aceSysId) params.append('aceSysId', context.propsValue.aceSysId);
157
+ if (context.propsValue.currentPassword) params.append('curPswrd', context.propsValue.currentPassword);
158
+ if (context.propsValue.termID) params.append('termID', context.propsValue.termID);
159
+
160
+ const queryString = params.toString();
161
+ const url = `${auth.baseUrl}/IBSSZ/v4/racf-user${queryString ? '?' + queryString : ''}`;
162
+
163
+ const response = await httpClient.sendRequest({
164
+ method: HttpMethod.GET,
165
+ url,
166
+ headers,
167
+ });
168
+ return response.body;
169
+ },
170
+ });
package/tsconfig.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "extends": "../../../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "module": "commonjs",
5
+ "forceConsistentCasingInFileNames": true,
6
+ "strict": true,
7
+ "noImplicitOverride": true,
8
+ "noPropertyAccessFromIndexSignature": true,
9
+ "noImplicitReturns": true,
10
+ "noFallthroughCasesInSwitch": true
11
+ },
12
+ "files": [],
13
+ "include": [],
14
+ "references": [
15
+ {
16
+ "path": "./tsconfig.lib.json"
17
+ }
18
+ ]
19
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../../../dist/out-tsc",
5
+ "declaration": true,
6
+ "types": ["node"]
7
+ },
8
+ "include": ["src/**/*.ts"],
9
+ "exclude": ["**/*.spec.ts", "**/*.test.ts"]
10
+ }
package/src/index.d.ts DELETED
@@ -1,16 +0,0 @@
1
- export declare const fisIbsCardsAuth: import("@activepieces/pieces-framework").CustomAuthProperty<{
2
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
3
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
4
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
5
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
6
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
7
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
8
- }>;
9
- export declare const fisIbsCards: import("@activepieces/pieces-framework").Piece<import("@activepieces/pieces-framework").CustomAuthProperty<{
10
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
11
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
12
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
13
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
14
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
15
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
16
- }>>;
package/src/index.js DELETED
@@ -1,166 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.fisIbsCards = exports.fisIbsCardsAuth = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const shared_1 = require("@activepieces/shared");
7
- const pieces_common_1 = require("@activepieces/pieces-common");
8
- // Cards actions
9
- const cards_1 = require("./lib/actions/cards");
10
- // Security actions
11
- const security_1 = require("./lib/actions/security");
12
- // Bank Control actions
13
- const bank_control_1 = require("./lib/actions/bank-control");
14
- exports.fisIbsCardsAuth = pieces_framework_1.PieceAuth.CustomAuth({
15
- description: 'FIS IBS Cards API credentials',
16
- required: true,
17
- props: {
18
- baseUrl: pieces_framework_1.Property.ShortText({
19
- displayName: 'Base URL',
20
- description: 'The base URL for the FIS IBS API (e.g., https://api-gw-uat.fisglobal.com/rest)',
21
- required: true,
22
- defaultValue: 'https://api-gw-uat.fisglobal.com/rest',
23
- }),
24
- organizationId: pieces_framework_1.Property.ShortText({
25
- displayName: 'Organization ID',
26
- description: 'Your FIS Organization ID',
27
- required: true,
28
- }),
29
- sourceId: pieces_framework_1.Property.ShortText({
30
- displayName: 'Source ID',
31
- description: 'Source ID provided by FIS (e.g., APIGWY)',
32
- required: true,
33
- defaultValue: 'APIGWY',
34
- }),
35
- applicationId: pieces_framework_1.Property.ShortText({
36
- displayName: 'Application ID',
37
- description: 'Application ID for your integration',
38
- required: true,
39
- }),
40
- ibsAuthorization: pieces_framework_1.PieceAuth.SecretText({
41
- displayName: 'IBS Authorization',
42
- description: 'Authorization token for IBS APIs',
43
- required: true,
44
- }),
45
- securityTokenType: pieces_framework_1.Property.StaticDropdown({
46
- displayName: 'Security Token Type',
47
- description: 'Type of security token being used',
48
- required: false,
49
- options: {
50
- options: [
51
- { label: 'JWT', value: 'JWT' },
52
- { label: 'SAML', value: 'SAML' },
53
- { label: 'OAuth', value: 'OAuth' },
54
- ],
55
- },
56
- defaultValue: 'JWT',
57
- }),
58
- },
59
- });
60
- exports.fisIbsCards = (0, pieces_framework_1.createPiece)({
61
- displayName: 'FIS IBS Cards',
62
- auth: exports.fisIbsCardsAuth,
63
- minimumSupportedRelease: '0.20.0',
64
- logoUrl: 'https://yt3.googleusercontent.com/ytc/AIdro_m-dmhaXsmxBqi4nOVPXVX8ydLn1f781GsWvJ2oKG73TcA=s900-c-k-c0x00ffffff-no-rj',
65
- authors: ['vqnguyen1'],
66
- categories: [shared_1.PieceCategory.BUSINESS_INTELLIGENCE],
67
- actions: [
68
- // Security & Authentication (3)
69
- security_1.security_ping,
70
- security_1.security_change_racf_password,
71
- security_1.security_validate_racf_user,
72
- // Bank Control (10)
73
- bank_control_1.bank_control_get_branch_detail,
74
- bank_control_1.bank_control_get_branch_info,
75
- bank_control_1.bank_control_get_processing_date,
76
- bank_control_1.bank_control_get_holiday_calendar,
77
- bank_control_1.bank_control_get_gl_account,
78
- bank_control_1.bank_control_get_institution_info,
79
- bank_control_1.bank_control_get_officer,
80
- bank_control_1.bank_control_get_product_codes,
81
- bank_control_1.bank_control_get_transaction_codes,
82
- bank_control_1.bank_control_get_routing_number,
83
- // Card Management (11)
84
- cards_1.cards_single_commit,
85
- cards_1.cards_get_holds,
86
- cards_1.cards_authenticate,
87
- cards_1.cards_link_unlink,
88
- cards_1.cards_update_personal_limits,
89
- cards_1.cards_activate,
90
- cards_1.cards_get_cardholders,
91
- cards_1.cards_update_cardholder_address,
92
- cards_1.cards_get_details,
93
- cards_1.cards_reset_failure_counters,
94
- cards_1.cards_generate_number,
95
- // Account Management (6)
96
- cards_1.cards_update_primary_accounts,
97
- cards_1.cards_get_multiple_accounts,
98
- cards_1.cards_update_multiple_accounts,
99
- cards_1.cards_add_multiple_accounts,
100
- cards_1.cards_delete_multiple_accounts,
101
- cards_1.cards_get_by_dda_account,
102
- // Alerts (4)
103
- cards_1.cards_update_alert_preferences,
104
- cards_1.cards_get_alert_preferences,
105
- cards_1.cards_update_alert_contact_info,
106
- cards_1.cards_get_alert_contact_info,
107
- // Fraud (4)
108
- cards_1.cards_get_fraud_exclusion_codes,
109
- cards_1.cards_delete_fraud_exclusion,
110
- cards_1.cards_update_fraud_exclusion,
111
- cards_1.cards_get_fraud_exclusion,
112
- // Holds (1)
113
- cards_1.cards_get_holds_v3,
114
- // Negative File (5)
115
- cards_1.cards_update_negative_file,
116
- cards_1.cards_get_negative_file,
117
- cards_1.cards_update_negative_file_replace_card,
118
- cards_1.cards_get_negative_file_replace_card,
119
- cards_1.cards_negative_file_ivr,
120
- // PIN (5)
121
- cards_1.cards_change_pin_ivr,
122
- cards_1.cards_validate_pin_ivr,
123
- cards_1.cards_change_pin,
124
- cards_1.cards_get_pin_info,
125
- cards_1.cards_send_pin_reminder,
126
- // Prefix (2)
127
- cards_1.cards_get_prefix_fee_info,
128
- cards_1.cards_get_prefix_issuer_ids,
129
- // Search (1)
130
- cards_1.cards_search,
131
- // Transactions (11)
132
- cards_1.cards_prepaid_credit_adjustment,
133
- cards_1.cards_prepaid_debit_adjustment,
134
- cards_1.cards_dda_sav_transfer,
135
- cards_1.cards_get_transaction_detail,
136
- cards_1.cards_prepaid_load,
137
- cards_1.cards_prepaid_unload,
138
- cards_1.cards_get_transactions,
139
- cards_1.cards_get_history_transactions,
140
- cards_1.cards_get_pending_transactions,
141
- cards_1.cards_ach_transfer,
142
- cards_1.cards_get_history_transaction_detail,
143
- // Custom API call for any other endpoints
144
- (0, pieces_common_1.createCustomApiCallAction)({
145
- baseUrl: (auth) => auth.baseUrl || 'https://api-gw-uat.fisglobal.com/rest',
146
- auth: exports.fisIbsCardsAuth,
147
- authMapping: (auth) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
148
- const authObj = auth;
149
- const uuid = crypto.randomUUID();
150
- const headers = {
151
- 'organization-id': authObj.organizationId,
152
- 'source-id': authObj.sourceId,
153
- 'application-id': authObj.applicationId,
154
- 'uuid': uuid,
155
- 'ibs-authorization': authObj.ibsAuthorization,
156
- };
157
- if (authObj.securityTokenType) {
158
- headers['security-token-type'] = authObj.securityTokenType;
159
- }
160
- return headers;
161
- }),
162
- }),
163
- ],
164
- triggers: [],
165
- });
166
- //# sourceMappingURL=index.js.map
package/src/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/custom/fis-ibs-cards/src/index.ts"],"names":[],"mappings":"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"}
@@ -1,110 +0,0 @@
1
- export declare const bank_control_get_branch_detail: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
2
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
3
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
4
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
5
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
6
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
7
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
8
- }>, {
9
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
10
- branchNumber: import("@activepieces/pieces-framework").NumberProperty<true>;
11
- effectiveDate: import("@activepieces/pieces-framework").ShortTextProperty<false>;
12
- }>;
13
- export declare const bank_control_get_branch_info: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
14
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
15
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
16
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
17
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
18
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
19
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
20
- }>, {
21
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
22
- branchNumber: import("@activepieces/pieces-framework").NumberProperty<true>;
23
- }>;
24
- export declare const bank_control_get_processing_date: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
25
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
26
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
27
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
28
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
29
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
30
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
31
- }>, {
32
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
33
- }>;
34
- export declare const bank_control_get_holiday_calendar: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
35
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
36
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
37
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
38
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
39
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
40
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
41
- }>, {
42
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
43
- year: import("@activepieces/pieces-framework").NumberProperty<false>;
44
- }>;
45
- export declare const bank_control_get_gl_account: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
46
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
47
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
48
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
49
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
50
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
51
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
52
- }>, {
53
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
54
- glAccountNumber: import("@activepieces/pieces-framework").ShortTextProperty<true>;
55
- }>;
56
- export declare const bank_control_get_institution_info: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
57
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
58
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
59
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
60
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
61
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
62
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
63
- }>, {
64
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
65
- institutionNumber: import("@activepieces/pieces-framework").NumberProperty<false>;
66
- }>;
67
- export declare const bank_control_get_officer: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
68
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
69
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
70
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
71
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
72
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
73
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
74
- }>, {
75
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
76
- officerId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
77
- }>;
78
- export declare const bank_control_get_product_codes: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
79
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
80
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
81
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
82
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
83
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
84
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
85
- }>, {
86
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
87
- productType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
88
- }>;
89
- export declare const bank_control_get_transaction_codes: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
90
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
91
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
92
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
93
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
94
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
95
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
96
- }>, {
97
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
98
- transactionType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
99
- }>;
100
- export declare const bank_control_get_routing_number: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
101
- baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
102
- organizationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
103
- sourceId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
104
- applicationId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
105
- ibsAuthorization: import("@activepieces/pieces-framework").SecretTextProperty<true>;
106
- securityTokenType: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
107
- }>, {
108
- ibsAuthorization: import("@activepieces/pieces-framework").ShortTextProperty<false>;
109
- routingNumber: import("@activepieces/pieces-framework").ShortTextProperty<true>;
110
- }>;