@unito/integration-cli 0.60.14 → 0.60.15
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/dist/boilerplate/eslint.config.js +3 -4
- package/dist/boilerplate/package-lock.json +601 -530
- package/dist/boilerplate/package.json +7 -5
- package/dist/boilerplate/tsconfig.build.json +4 -0
- package/dist/boilerplate/tsconfig.json +1 -1
- package/dist/src/services/integrationsPlatformClient.d.ts +5 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Integration Boilerplate",
|
|
6
6
|
"license": "LicenseRef-LICENSE",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"compile": "tsc",
|
|
8
|
+
"compile": "tsc --project tsconfig.build.json",
|
|
9
9
|
"dev": "tsx watch src/index.ts",
|
|
10
10
|
"test": "NODE_ENV=test tsx --test --test-name-pattern=${ONLY:-.*} $(find test -type f -name '*.test.ts')",
|
|
11
11
|
"lint": "eslint --fix src && prettier --write src",
|
|
@@ -23,15 +23,17 @@
|
|
|
23
23
|
"node": "20.9"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@unito/integration-sdk": "^
|
|
26
|
+
"@unito/integration-sdk": "^1.x"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "20.9.x",
|
|
30
|
-
"
|
|
31
|
-
"eslint": "8.x",
|
|
30
|
+
"@types/eslint__js": "8.x",
|
|
32
31
|
"npm-audit-resolver": "^3.0.0-RC.0",
|
|
33
32
|
"prettier": "3.x",
|
|
34
33
|
"tsx": "4.x",
|
|
35
|
-
"typescript": "5.x"
|
|
34
|
+
"typescript": "5.x",
|
|
35
|
+
"typescript-eslint": "8.x",
|
|
36
|
+
"eslint": "9.x",
|
|
37
|
+
"@eslint/js": "9.x"
|
|
36
38
|
}
|
|
37
39
|
}
|
|
@@ -326,6 +326,10 @@ export declare function getCredentials({ pagination, filters, }?: {
|
|
|
326
326
|
unitoUserId?: string;
|
|
327
327
|
/** The id of the credential account for which this credential belongs to. */
|
|
328
328
|
credentialAccountId?: string;
|
|
329
|
+
/** The last access to the credential account occured before the provided date. */
|
|
330
|
+
lastCredentialAccountAccessAtBefore?: string;
|
|
331
|
+
/** The first failure to access the credential account occured after the provided date. */
|
|
332
|
+
firstFailedCredentialAccountAccessAtAfter?: string;
|
|
329
333
|
};
|
|
330
334
|
}, opts?: Oazapfts.RequestOpts): Promise<Pagination & {
|
|
331
335
|
/** The credentials. */
|
|
@@ -375,7 +379,7 @@ export declare function getCredentialAccount(xUnitoCredentialId: string, { xUnit
|
|
|
375
379
|
*/
|
|
376
380
|
export declare function postTrack(body: {
|
|
377
381
|
jwtToken: string;
|
|
378
|
-
event: 'AUTH_START' | 'AUTH_SUBMIT' | 'AUTH_ACTION' | 'AUTH_BLOCKED' | 'USER_SUCCEEDS_CONNECTION' | 'USER_FAILED_CONNECTION';
|
|
382
|
+
event: 'AUTH_START' | 'AUTH_SUBMIT' | 'AUTH_ACTION' | 'AUTH_BLOCKED' | 'USER_SUCCEEDS_CONNECTION' | 'USER_FAILED_CONNECTION' | 'AUTH_CHOOSE_CONNECTION_SUBMIT';
|
|
379
383
|
payload?: {
|
|
380
384
|
[key: string]: any;
|
|
381
385
|
};
|
package/oclif.manifest.json
CHANGED