Skip to content

Commit

Permalink
fix: use supportedApps (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcooney authored Sep 18, 2023
1 parent 6da96de commit 912124b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ To use the VertiGIS FM activities in [VertiGIS Studio Workflow Designer](https:/
- URL: The URL to this activity pack manifest
- Use https://unpkg.com/@vertigis/workflow-activities-fm/activitypack.json for the latest version
- Use https://unpkg.com/@vertigis/[email protected]/activitypack.json for a specific version
- Use https://localhost:5000/activitypack.json for a local development version
- Title: Your desired title
- Tags: Must include `geocortex-workflow-activity-pack`
1. Reload [VertiGIS Studio Workflow Designer](https://apps.vertigisstudio.com/workflow/designer/)
Expand Down
2 changes: 1 addition & 1 deletion src/activities/CreateService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface CreateServiceOutputs {
* @category VertiGIS FM
* @description Creates an authenticated connection to a VertiGIS FM service that can be used with other VertiGIS FM activities.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export default class CreateService implements IActivityHandler {
async execute(inputs: CreateServiceInputs): Promise<CreateServiceOutputs> {
Expand Down
2 changes: 1 addition & 1 deletion src/activities/GetODataCollection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ interface GetODataCollectionOutputs {
* @category VertiGIS FM
* @description Sends an OData request to VertiGIS FM to fetch a list of entities.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export default class GetODataCollection implements IActivityHandler {
async execute(inputs: GetODataCollectionInputs): Promise<GetODataCollectionOutputs> {
Expand Down
2 changes: 1 addition & 1 deletion src/activities/GetODataEntity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ interface GetODataEntityOutputs {
* @category VertiGIS FM
* @description Sends an OData request to VertiGIS FM to fetch a single entity.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export default class GetODataEntity implements IActivityHandler {
async execute(inputs: GetODataEntityInputs): Promise<GetODataEntityOutputs> {
Expand Down
2 changes: 1 addition & 1 deletion src/activities/SendRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ interface SendRequestOutputs {
* @displayName Send VertiGIS FM Request
* @description Sends a request to the VertiGIS FM API.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export default class SendRequest implements IActivityHandler {
async execute(
Expand Down

0 comments on commit 912124b

Please sign in to comment.