@beseif-solutions/prow-core 0.3.15 → 0.3.16

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.
@@ -35,7 +35,7 @@ export type OAuthCredentials<Config extends CredentialsConfig = {}> = CommonCred
35
35
  inputs: {
36
36
  redirect: string;
37
37
  code: string;
38
- };
38
+ } & Record<string, any>;
39
39
  outputs: {
40
40
  username?: string;
41
41
  credentials: Config[`credentials`];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beseif-solutions/prow-core",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "Prow core functionalities and classes",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -33,7 +33,7 @@ export type OAuthCredentials<Config extends CredentialsConfig = {}> = CommonCred
33
33
  }>,
34
34
  connect: CoreFunction<{
35
35
  credentials: undefined,
36
- inputs: { redirect: string, code: string },
36
+ inputs: { redirect: string, code: string } & Record<string, any>,
37
37
  outputs: {
38
38
  username?: string,
39
39
  credentials: Config[`credentials`],