Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto Pull Request for protobuf files [liquibase 4.27.0] #96

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@
"dotenv": "^8.2.0",
"husky": "^6.0.0",
"ncp": "^2.0.0",
"proto": "^1.0.19",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"ts-proto": "^1.171.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"tsup": "^4.8.21",
"typescript": "^4.2.4",
"yarn": "^1.22.10",
"proto": "^1.0.19",
"ts-proto": "^1.167.9"
"yarn": "^1.22.10"
},
"release": {
"branches": [
Expand Down
38 changes: 28 additions & 10 deletions proto-commands/calculate_checksum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,45 @@ export interface CalculateChecksumRequest {
/** required* The root changelog file */
changelogFile: string;
/** ChangeSet Author attribute */
changesetAuthor?: string;
changesetAuthor?:
| string
| undefined;
/** ChangeSet ID attribute */
changesetId?: string;
changesetId?:
| string
| undefined;
/** ChangeSet identifier of form filepath::id::author */
changesetIdentifier?: string;
changesetIdentifier?:
| string
| undefined;
/** Changelog path in which the changeSet is included */
changesetPath?: string;
changesetPath?:
| string
| undefined;
/** The default catalog name to use for the database connection */
defaultCatalogName?: string;
defaultCatalogName?:
| string
| undefined;
/** The default schema name to use for the database connection */
defaultSchemaName?: string;
defaultSchemaName?:
| string
| undefined;
/** The JDBC driver class */
driver?: string;
driver?:
| string
| undefined;
/** The JDBC driver properties file */
driverPropertiesFile?: string;
driverPropertiesFile?:
| string
| undefined;
/** Password to use to connect to the database */
password?: string;
password?:
| string
| undefined;
/** required* The JDBC database connection URL */
url: string;
/** Username to use to connect to the database */
username?: string;
username?: string | undefined;
globalOptions: GlobalOptions | undefined;
}

Expand Down
30 changes: 22 additions & 8 deletions proto-commands/changelog_sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,37 @@ export interface ChangelogSyncRequest {
/** required* The root changelog file */
changelogFile: string;
/** Context string to use for filtering */
contextFilter?: string;
contextFilter?:
| string
| undefined;
/** The default catalog name to use for the database connection */
defaultCatalogName?: string;
defaultCatalogName?:
| string
| undefined;
/** The default schema name to use for the database connection */
defaultSchemaName?: string;
defaultSchemaName?:
| string
| undefined;
/** The JDBC driver class */
driver?: string;
driver?:
| string
| undefined;
/** The JDBC driver properties file */
driverPropertiesFile?: string;
driverPropertiesFile?:
| string
| undefined;
/** Label expression to use for filtering */
labelFilter?: string;
labelFilter?:
| string
| undefined;
/** Password to use to connect to the database */
password?: string;
password?:
| string
| undefined;
/** required* The JDBC database connection URL */
url: string;
/** Username to use to connect to the database */
username?: string;
username?: string | undefined;
globalOptions: GlobalOptions | undefined;
}

Expand Down
38 changes: 28 additions & 10 deletions proto-commands/changelog_sync_sql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,45 @@ export interface ChangelogSyncSqlRequest {
/** required* The root changelog file */
changelogFile: string;
/** Context string to use for filtering */
contextFilter?: string;
contextFilter?:
| string
| undefined;
/** The default catalog name to use for the database connection */
defaultCatalogName?: string;
defaultCatalogName?:
| string
| undefined;
/** The default schema name to use for the database connection */
defaultSchemaName?: string;
defaultSchemaName?:
| string
| undefined;
/** The JDBC driver class */
driver?: string;
driver?:
| string
| undefined;
/** The JDBC driver properties file */
driverPropertiesFile?: string;
driverPropertiesFile?:
| string
| undefined;
/** Label expression to use for filtering */
labelFilter?: string;
labelFilter?:
| string
| undefined;
/** Control whether names of objects in the default catalog are fully qualified or not. If true they are. If false, only objects outside the default catalog are fully qualified */
outputDefaultCatalog?: boolean;
outputDefaultCatalog?:
| boolean
| undefined;
/** Control whether names of objects in the default schema are fully qualified or not. If true they are. If false, only objects outside the default schema are fully qualified */
outputDefaultSchema?: boolean;
outputDefaultSchema?:
| boolean
| undefined;
/** Password to use to connect to the database */
password?: string;
password?:
| string
| undefined;
/** required* The JDBC database connection URL */
url: string;
/** Username to use to connect to the database */
username?: string;
username?: string | undefined;
globalOptions: GlobalOptions | undefined;
}

Expand Down
30 changes: 22 additions & 8 deletions proto-commands/changelog_sync_to_tag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,39 @@ export interface ChangelogSyncToTagRequest {
/** required* The root changelog file */
changelogFile: string;
/** Context string to use for filtering */
contextFilter?: string;
contextFilter?:
| string
| undefined;
/** The default catalog name to use for the database connection */
defaultCatalogName?: string;
defaultCatalogName?:
| string
| undefined;
/** The default schema name to use for the database connection */
defaultSchemaName?: string;
defaultSchemaName?:
| string
| undefined;
/** The JDBC driver class */
driver?: string;
driver?:
| string
| undefined;
/** The JDBC driver properties file */
driverPropertiesFile?: string;
driverPropertiesFile?:
| string
| undefined;
/** Label expression to use for filtering */
labelFilter?: string;
labelFilter?:
| string
| undefined;
/** Password to use to connect to the database */
password?: string;
password?:
| string
| undefined;
/** required* Tag ID to execute changelogSync to */
tag: string;
/** required* The JDBC database connection URL */
url: string;
/** Username to use to connect to the database */
username?: string;
username?: string | undefined;
globalOptions: GlobalOptions | undefined;
}

Expand Down
38 changes: 28 additions & 10 deletions proto-commands/changelog_sync_to_tag_sql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,47 @@ export interface ChangelogSyncToTagSqlRequest {
/** required* The root changelog file */
changelogFile: string;
/** Context string to use for filtering */
contextFilter?: string;
contextFilter?:
| string
| undefined;
/** The default catalog name to use for the database connection */
defaultCatalogName?: string;
defaultCatalogName?:
| string
| undefined;
/** The default schema name to use for the database connection */
defaultSchemaName?: string;
defaultSchemaName?:
| string
| undefined;
/** The JDBC driver class */
driver?: string;
driver?:
| string
| undefined;
/** The JDBC driver properties file */
driverPropertiesFile?: string;
driverPropertiesFile?:
| string
| undefined;
/** Label expression to use for filtering */
labelFilter?: string;
labelFilter?:
| string
| undefined;
/** Control whether names of objects in the default catalog are fully qualified or not. If true they are. If false, only objects outside the default catalog are fully qualified */
outputDefaultCatalog?: boolean;
outputDefaultCatalog?:
| boolean
| undefined;
/** Control whether names of objects in the default schema are fully qualified or not. If true they are. If false, only objects outside the default schema are fully qualified */
outputDefaultSchema?: boolean;
outputDefaultSchema?:
| boolean
| undefined;
/** Password to use to connect to the database */
password?: string;
password?:
| string
| undefined;
/** required* Tag ID to execute changelogSync to */
tag: string;
/** required* The JDBC database connection URL */
url: string;
/** Username to use to connect to the database */
username?: string;
username?: string | undefined;
globalOptions: GlobalOptions | undefined;
}

Expand Down
Loading
Loading