Skip to content

Commit 5ce6fe2

Browse files
authored
fix: use supportedApps (#41)
1 parent 60c64df commit 5ce6fe2

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The FME activities are designed to work with VertiGIS Studio Workflow versions `
1515

1616
### FME Versions
1717

18-
The FME activities are designed to work with FME Server REST API `V3`.
18+
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/#).
1919

2020
## Usage
2121

src/activities/CheckFmeJobStatus.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export interface CheckFmeJobStatusOutputs {
5454
priority?: number;
5555
requesterHost?: string;
5656
requesterResultPort?: number;
57+
resultDatasetDownloadUrl?: string;
5758
status?: string;
5859
statusMessage?: string;
5960
timeFinished?: string;
@@ -76,7 +77,7 @@ export interface CheckFmeJobStatusOutputs {
7677
* @category FME
7778
* @description Checks the status of an FME job.
7879
* @clientOnly
79-
* @unsupportedApps GMV
80+
* @supportedApps EXB, GWV, GVH, WAB
8081
*/
8182
export class CheckFmeJobStatus implements IActivityHandler {
8283
async execute(

src/activities/CreateFmeService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface CreateFmeServiceOutputs {
4242
* @category FME
4343
* @description Creates an authenticated connection to an FME server.
4444
* @clientOnly
45-
* @unsupportedApps GMV
45+
* @supportedApps EXB, GWV, GVH, WAB
4646
*/
4747
export class CreateFmeService implements IActivityHandler {
4848
async execute(

src/activities/GetFmeWorkspaceParameters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface GetFmeWorkspaceParametersOutputs {
4747
* @category FME
4848
* @description Gets all published parameters for a given FME workspace.
4949
* @clientOnly
50-
* @unsupportedApps GMV
50+
* @supportedApps EXB, GWV, GVH, WAB
5151
*/
5252
export class GetFmeWorkspaceParameters implements IActivityHandler {
5353
async execute(

src/activities/RunFmeDataDownload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface RunFmeDataDownloadOutputs {
5353
* @category FME
5454
* @description Runs an FME data download job.
5555
* @clientOnly
56-
* @unsupportedApps GMV
56+
* @supportedApps EXB, GWV, GVH, WAB
5757
*/
5858
export class RunFmeDataDownload implements IActivityHandler {
5959
async execute(

src/activities/RunFmeJob.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export interface RunFmeJobOutputs {
5454
* @category FME
5555
* @description Runs an FME job synchronously.
5656
* @clientOnly
57-
* @unsupportedApps GMV
57+
* @supportedApps EXB, GWV, GVH, WAB
5858
*/
5959
export class RunFmeJob implements IActivityHandler {
6060
async execute(inputs: RunFmeJobInputs): Promise<RunFmeJobOutputs> {

src/activities/RunFmeJobAsync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export interface RunFmeJobAsyncOutputs {
4545
* @category FME
4646
* @description Runs an FME job asynchronously.
4747
* @clientOnly
48-
* @unsupportedApps GMV
48+
* @supportedApps EXB, GWV, GVH, WAB
4949
*/
5050
export class RunFmeJobAsync implements IActivityHandler {
5151
async execute(

src/activities/UseFmeService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ export interface UseFmeServiceOutputs {
257257
* @description Utility activity to generically access any FME Server REST API operation.
258258
* @helpUrl https://docs.safe.com/fme/html/FME_REST/apidoc/v3/#!
259259
* @clientOnly
260-
* @unsupportedApps GMV
260+
* @supportedApps EXB, GWV, GVH, WAB
261261
*/
262262
export class UseFmeService implements IActivityHandler {
263263
async execute(inputs: UseFmeServiceInputs): Promise<UseFmeServiceOutputs> {

0 commit comments

Comments
 (0)