Skip to content

Commit 9b0bc53

Browse files
committed
Run make spec-format-fix
1 parent d527f54 commit 9b0bc53

File tree

7 files changed

+4
-12
lines changed

7 files changed

+4
-12
lines changed

specification/connector/secret_delete/ConnectorSecretDeleteRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ export interface Request extends RequestBase {
3636
/** The ID of the secret */
3737
id: string
3838
}
39-
}
39+
}

specification/connector/secret_delete/ConnectorSecretDeleteResponse.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* under the License.
1818
*/
1919

20-
2120
export class Response {
2221
body: {
2322
deleted: boolean

specification/connector/secret_get/ConnectorSecretGetRequest.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
*/
1919

2020
import { RequestBase } from '@_types/Base'
21-
import { Duration } from '@_types/Time'
22-
2321

2422
/**
2523
* Retrieves a secret stored by Connectors.
@@ -38,4 +36,4 @@ export interface Request extends RequestBase {
3836
/** The ID of the secret */
3937
id: string
4038
}
41-
}
39+
}

specification/connector/secret_get/ConnectorSecretGetResponse.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* under the License.
1818
*/
1919

20-
2120
export class Response {
2221
body: {
2322
id: string

specification/connector/secret_post/ConnectorSecretPostRequest.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
import { RequestBase } from '@_types/Base'
2121

22-
2322
/**
2423
* Creates a secret for a Connector.
2524
*
@@ -36,4 +35,4 @@ export interface Request extends RequestBase {
3635
body: {
3736
value: string
3837
}
39-
}
38+
}

specification/connector/secret_post/ConnectorSecretPostResponse.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* under the License.
1818
*/
1919

20-
2120
export class Response {
2221
body: {
2322
id: string

specification/connector/secret_put/ConnectorSecretPutRequest.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
*/
1919

2020
import { RequestBase } from '@_types/Base'
21-
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
22-
2321

2422
/**
2523
* Creates or updates a secret for a Connector.
@@ -41,4 +39,4 @@ export interface Request extends RequestBase {
4139
body: {
4240
value: string
4341
}
44-
}
42+
}

0 commit comments

Comments
 (0)