Skip to content

Commit

Permalink
fix: use supportedApps (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcooney authored Sep 18, 2023
1 parent 60c64df commit 5ce6fe2
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The FME activities are designed to work with VertiGIS Studio Workflow versions `

### FME Versions

The FME activities are designed to work with FME Server REST API `V3`.
The FME activities are designed to work with version 3 of the [FME Server REST API](https://docs.safe.com/fme/html/FME_REST/apidoc/v3/#).

## Usage

Expand Down
3 changes: 2 additions & 1 deletion src/activities/CheckFmeJobStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export interface CheckFmeJobStatusOutputs {
priority?: number;
requesterHost?: string;
requesterResultPort?: number;
resultDatasetDownloadUrl?: string;
status?: string;
statusMessage?: string;
timeFinished?: string;
Expand All @@ -76,7 +77,7 @@ export interface CheckFmeJobStatusOutputs {
* @category FME
* @description Checks the status of an FME job.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export class CheckFmeJobStatus implements IActivityHandler {
async execute(
Expand Down
2 changes: 1 addition & 1 deletion src/activities/CreateFmeService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface CreateFmeServiceOutputs {
* @category FME
* @description Creates an authenticated connection to an FME server.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export class CreateFmeService implements IActivityHandler {
async execute(
Expand Down
2 changes: 1 addition & 1 deletion src/activities/GetFmeWorkspaceParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface GetFmeWorkspaceParametersOutputs {
* @category FME
* @description Gets all published parameters for a given FME workspace.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export class GetFmeWorkspaceParameters implements IActivityHandler {
async execute(
Expand Down
2 changes: 1 addition & 1 deletion src/activities/RunFmeDataDownload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export interface RunFmeDataDownloadOutputs {
* @category FME
* @description Runs an FME data download job.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export class RunFmeDataDownload implements IActivityHandler {
async execute(
Expand Down
2 changes: 1 addition & 1 deletion src/activities/RunFmeJob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface RunFmeJobOutputs {
* @category FME
* @description Runs an FME job synchronously.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export class RunFmeJob implements IActivityHandler {
async execute(inputs: RunFmeJobInputs): Promise<RunFmeJobOutputs> {
Expand Down
2 changes: 1 addition & 1 deletion src/activities/RunFmeJobAsync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface RunFmeJobAsyncOutputs {
* @category FME
* @description Runs an FME job asynchronously.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export class RunFmeJobAsync implements IActivityHandler {
async execute(
Expand Down
2 changes: 1 addition & 1 deletion src/activities/UseFmeService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export interface UseFmeServiceOutputs {
* @description Utility activity to generically access any FME Server REST API operation.
* @helpUrl https://docs.safe.com/fme/html/FME_REST/apidoc/v3/#!
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GWV, GVH, WAB
*/
export class UseFmeService implements IActivityHandler {
async execute(inputs: UseFmeServiceInputs): Promise<UseFmeServiceOutputs> {
Expand Down

0 comments on commit 5ce6fe2

Please sign in to comment.