Skip to content

Commit

Permalink
⚗️ Test sdk ci
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Dec 17, 2023
1 parent 6a41179 commit f1ad67f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
File renamed without changes.
12 changes: 11 additions & 1 deletion packages/api/liblab.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"specFilePath": "https://raw.githubusercontent.com/panoratech/Panora/main/packages/api/swagger/swagger-spec.json",
"languages": [
"typescript",
"python"
"python",
"java",
"go"
],
"createDocs": false,
"auth": [
Expand Down Expand Up @@ -48,6 +50,14 @@
"githubRepoName": "python-sdk",
"sdkVersion": "1.0.0",
"ignoreFiles": []
},
"java": {
"githubRepoName": "java-sdk",
"sdkVersion": "1.0.0"
},
"go": {
"githubRepoName": "go-sdk",
"sdkVersion": "1.0.0"
}
},
"publishing": {
Expand Down
4 changes: 3 additions & 1 deletion packages/api/src/crm/contact/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export class Email {
description: 'The email address of a contact',
})
email_address: string;
@ApiProperty()
@ApiProperty({
description: 'The email address type of a contact',
})
email_address_type: string;
@ApiPropertyOptional()
owner_type?: string;
Expand Down
3 changes: 2 additions & 1 deletion packages/api/swagger/swagger-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,8 @@
"description": "The email address of a contact"
},
"email_address_type": {
"type": "string"
"type": "string",
"description": "The email address type of a contact"
},
"owner_type": {
"type": "string"
Expand Down

0 comments on commit f1ad67f

Please sign in to comment.