Function
echoResponsesWithExternalAuth
(
providers: ExternalAuthProviderResource[],
)
Source from the content-addressed store, hash-verified
| 1010 | }; |
| 1011 | |
| 1012 | export const echoResponsesWithExternalAuth = ( |
| 1013 | providers: ExternalAuthProviderResource[], |
| 1014 | ): EchoProvisionerResponses => { |
| 1015 | return { |
| 1016 | init: [ |
| 1017 | { |
| 1018 | init: {}, |
| 1019 | }, |
| 1020 | ], |
| 1021 | parse: [ |
| 1022 | { |
| 1023 | parse: {}, |
| 1024 | }, |
| 1025 | ], |
| 1026 | graph: [ |
| 1027 | { |
| 1028 | graph: { |
| 1029 | externalAuthProviders: providers, |
| 1030 | resources: [ |
| 1031 | { |
| 1032 | name: "example", |
| 1033 | }, |
| 1034 | ], |
| 1035 | }, |
| 1036 | }, |
| 1037 | ], |
| 1038 | apply: [ |
| 1039 | { |
| 1040 | apply: {}, |
| 1041 | }, |
| 1042 | ], |
| 1043 | }; |
| 1044 | }; |
| 1045 | |
| 1046 | const fillParameters = async ( |
| 1047 | page: Page, |
Tested by
no test coverage detected