File tree Expand file tree Collapse file tree 4 files changed +70
-0
lines changed
components/launch_darkly_oauth/sources Expand file tree Collapse file tree 4 files changed +70
-0
lines changed Original file line number Diff line number Diff line change 1+ import app from "../../launch_darkly_oauth.app.mjs" ;
2+ import common from "../../../launchdarkly/sources/common/webhook.mjs" ;
3+
4+ export default {
5+ ...common ,
6+ props : {
7+ app,
8+ db : "$.service.db" ,
9+ http : {
10+ type : "$.interface.http" ,
11+ customResponse : true ,
12+ } ,
13+ } ,
14+ } ;
Original file line number Diff line number Diff line change 1+ import common from "../common/webhook.mjs" ;
2+ import component from "../../../launchdarkly/sources/new-access-token-event/new-access-token-event.mjs" ;
3+
4+ const {
5+ name, description, type,
6+ } = component ;
7+
8+ export default {
9+ ...component ,
10+ key : "launch_darkly_oauth-new-access-token-event" ,
11+ version : "0.0.1" ,
12+ name,
13+ description,
14+ type,
15+ props : {
16+ ...common . props ,
17+ memberId : {
18+ propDefinition : [
19+ common . props . app ,
20+ "memberId" ,
21+ ] ,
22+ } ,
23+ } ,
24+ } ;
Original file line number Diff line number Diff line change 1+ import common from "../common/webhook.mjs" ;
2+ import component from "../../../launchdarkly/sources/new-flag-event/new-flag-event.mjs" ;
3+
4+ const {
5+ name, description, type,
6+ } = component ;
7+
8+ export default {
9+ ...component ,
10+ key : "launch_darkly_oauth-new-flag-event" ,
11+ version : "0.0.1" ,
12+ name,
13+ description,
14+ type,
15+ props : common . props ,
16+ } ;
Original file line number Diff line number Diff line change 1+ import common from "../common/webhook.mjs" ;
2+ import component from "../../../launchdarkly/sources/new-user-event/new-user-event.mjs" ;
3+
4+ const {
5+ name, description, type,
6+ } = component ;
7+
8+ export default {
9+ ...component ,
10+ key : "launch_darkly_oauth-new-user-event" ,
11+ version : "0.0.1" ,
12+ name,
13+ description,
14+ type,
15+ props : common . props ,
16+ } ;
You can’t perform that action at this time.
0 commit comments