Skip to content
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4258c2a
update faker values
physik932 Dec 2, 2024
11e7fa0
update a bunch of dependencies
physik932 Dec 2, 2024
f2e9e7f
stop generating license and comments
physik932 Dec 2, 2024
c9d5f4e
redo compliation assets to remove warning
physik932 Dec 2, 2024
01f0f03
fix jest test with rejected promise
physik932 Dec 2, 2024
fe1a6b3
bump version
physik932 Dec 2, 2024
861f470
update styling, errors
physik932 Dec 2, 2024
05c35d6
update jquery and bootstrap to 4
physik932 Dec 2, 2024
f5f9f18
fix jquery cdn reference
physik932 Dec 3, 2024
7703b7c
switch to an id, fix test
physik932 Dec 3, 2024
e599dd5
simplify
physik932 Dec 3, 2024
3d2e69a
update changelog
physik932 Dec 3, 2024
d6d42a2
fix translations
physik932 Dec 3, 2024
c28a349
update readme
physik932 Dec 3, 2024
be04e9d
screenshots and docs
physik932 Dec 3, 2024
b3a6280
updating all the things
physik932 Dec 3, 2024
85b2904
screenshot and doc changes
physik932 Dec 4, 2024
0d4f05d
docs
physik932 Dec 4, 2024
f733161
updating dependencies
physik932 Aug 7, 2025
2bac55b
Bump nanoid from 3.3.7 to 3.3.8
dependabot[bot] Dec 17, 2024
f68134e
remove lodash, other dependencies
physik932 Aug 7, 2025
0fc81ce
remove corejs, simplify app
physik932 Aug 8, 2025
9c686e3
update to node22
physik932 Aug 12, 2025
47322b6
use eslint, run some linting
physik932 Aug 12, 2025
8cc3d67
try to make lint happy
physik932 Aug 12, 2025
1884851
update some deps
physik932 Aug 12, 2025
57a1d5b
more eslint stuff
physik932 Aug 12, 2025
1d1258f
adjust codeowner, more changelog notes
physik932 Aug 12, 2025
91916fe
vibe code updates to the docs
physik932 Aug 12, 2025
07f406a
remove template blocks
physik932 Aug 13, 2025
65132d5
eslint ignore camelcase for the specific fields
physik932 Aug 13, 2025
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
12 changes: 12 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog

## 3.2.0

- Updated to Bootstrap V4, changed styling from wells to cards
- Updated numerous dependencies to reduce build warnings and errors.
- Removed some styling as it seemed unnecessary.
- Zendesk Marketplace Requirements:
- Adding necessary screenshots.
- Removing generated Webpack LICENSE file.

## 3.1.0

- Node 20
- Dependabot
- Package updates
Expand Down
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ A Zendesk App to help you generate links for agents.

## Dependencies
```
"node": ">=18.12.1",
"zcli": ">=1.0.0-beta.32"
"node": ">=20.17.0",
"@zendesk/zcli": "^1.0.0-beta.51"
```

## Usage
Expand Down Expand Up @@ -67,28 +67,23 @@ This example will generate the following HTML inside the app:

### Sample Placeholders

Below is a list of just a few of the available placeholders. To see the full list of fields, please see the [Zendesk Apps Reference - API Reference](https://developer.zendesk.com/api-reference/apps/introduction/). You can find fields available to [all locations](https://developer.zendesk.com/api-reference/apps/apps-support-api/all_locations/) and the [ticketsidebar](https://developer.zendesk.com/api-reference/apps/apps-support-api/ticket_sidebar/).
Below is a list of just a few of the available object properties available as placeholders. To see the full list of fields, please see the [Zendesk Apps Reference - API Reference](https://developer.zendesk.com/api-reference/apps/introduction/). For example, you can use object properties available in [all locations](https://developer.zendesk.com/api-reference/apps/apps-support-api/all_locations/) and object properties available in the [ticket sidebar](https://developer.zendesk.com/api-reference/apps/apps-support-api/ticket_sidebar/) .

```
* {{ticket.id}}
* {{ticket.description}}
* {{ticket.requester.id}}
* {{ticket.requester.name}}
* {{ticket.requester.email}}
* {{ticket.requester.externalId}}
* {{ticket.requester.user_fields.YYY}} = custom user fields can be used
* {{ticket.assignee.user.id}}
* {{ticket.assignee.user.name}}
* {{ticket.assignee.user.email}}
* {{ticket.assignee.user.externalId}}
* {{ticket.assignee.group.id}}
* {{ticket.assignee.group.name}}
* {{ticket.custom_field_XXXXXXX}} // XXXXXXX = custom field id
* {{ticket.organization.organization_fields.XXXXXXX}} // XXXXXXX = Field key, default is field name
* {{currentUser.id}}
* {{currentUser.name}}
* {{currentUser.email}}
* {{currentUser.externalId}}
```

## Issues
Expand Down
Loading
Loading