@vqnguyen1/piece-fis-ibs-cards 0.0.1 → 0.0.3
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 +2 -2
- package/src/index.d.ts +16 -0
- package/src/index.js +166 -0
- package/src/index.js.map +1 -0
- package/src/lib/actions/bank-control.d.ts +110 -0
- package/src/lib/actions/bank-control.js +371 -0
- package/src/lib/actions/bank-control.js.map +1 -0
- package/src/lib/actions/cards.d.ts +565 -0
- package/src/lib/actions/cards.js +1733 -0
- package/src/lib/actions/cards.js.map +1 -0
- package/src/lib/actions/security.d.ts +38 -0
- package/src/lib/actions/security.js +173 -0
- package/src/lib/actions/security.js.map +1 -0
- package/project.json +0 -22
- package/src/index.ts +0 -244
- package/src/lib/actions/bank-control.ts +0 -378
- package/src/lib/actions/cards.ts +0 -1732
- package/src/lib/actions/security.ts +0 -170
- package/tsconfig.json +0 -19
- package/tsconfig.lib.json +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vqnguyen1/piece-fis-ibs-cards",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -19,4 +19,4 @@
|
|
|
19
19
|
"@activepieces/pieces-common": "*",
|
|
20
20
|
"@activepieces/shared": "*"
|
|
21
21
|
}
|
|
22
|
-
}
|
|
22
|
+
}
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
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
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
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
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/custom/fis-ibs-cards/src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,110 @@
|
|
|
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
|
+
}>;
|