Skip to content

Commit

Permalink
Remove authMode (#7659)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredzqm committed Sep 16, 2024
1 parent 4d4c57d commit 2503dfa
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
connectorId: "a"
authMode: "PUBLIC"
generate?:
outputDir: ../../a_connector_js_sdk
5 changes: 0 additions & 5 deletions schema/connector-yaml.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@
"type": "string",
"description": "The ID of the Firebase Data Connect connector."
},
"authMode": {
"type": "string",
"description": "The authentication strategy to use for this connector"

},
"generate": {
"type": "object",
"additionalProperties": false,
Expand Down
1 change: 0 additions & 1 deletion src/dataconnect/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ export interface DatasourceYaml {

export interface ConnectorYaml {
connectorId: string;
authMode?: "ADMIN" | "PUBLIC";
generate?: Generate;
}

Expand Down
1 change: 0 additions & 1 deletion templates/init/dataconnect/connector.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
connectorId: __connectorId__
authMode: "PUBLIC"
## ## Here's an example of how to add generated SDKs.
## ## You'll need to replace the outputDirs with ones pointing to where you want the generated code in your app.
# generate:
Expand Down

0 comments on commit 2503dfa

Please sign in to comment.