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

Improve tooltips in PutContact.js #33

Merged
merged 1 commit into from
Feb 29, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/appmixer/naxai/bundle.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "appmixer.naxai",
"version": "1.0.0",
"version": "1.0.1",
"changelog": {
"1.0.0": [
"1.0.1": [
"Naxai"
]
}
Expand Down
3 changes: 2 additions & 1 deletion src/appmixer/naxai/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ paths:
parameters:
- name: identifier
in: path
description: Identifier of the contact.
description: Identifier of the contact. For more details, see <a href="https://docs.naxai.com/docs/add-and-update-contacts-using-the-api" target="_blank">Naxai documentation</a>.
required: true
schema:
type: string
Expand All @@ -38,6 +38,7 @@ paths:
type: string
createdAt:
type: integer
description: "The date of creation of the contact in seconds. Example: 1671179612"
responses:
'200':
description: Successful operation
Expand Down
4 changes: 2 additions & 2 deletions src/appmixer/naxai/people/PutContact/PutContact.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ module.exports = {
type: 'string',
index: 0,
label: 'Identifier',
tooltip: '<p>Identifier of the contact.</p>'
tooltip: '<p>Identifier of the contact. For more details, see <a href="https://docs.naxai.com/docs/add-and-update-contacts-using-the-api" target="_blank">Naxai documentation</a>.</p>'
},
email: {
type: 'string',
Expand Down Expand Up @@ -139,7 +139,7 @@ module.exports = {
type: 'number',
index: 6,
label: 'Created At',
tooltip: ''
tooltip: 'The date of creation of the contact in seconds. Example: 1671179612'
}
};

Expand Down
Loading