@rlvt/workflows-openapi-client 1.0.174 → 1.0.177
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/api.d.ts +7 -7
- package/build/definitions.d.ts +2 -2
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -194,7 +194,7 @@ export default class {
|
|
|
194
194
|
};
|
|
195
195
|
};
|
|
196
196
|
}[];
|
|
197
|
-
|
|
197
|
+
variableProfileId?: string | undefined;
|
|
198
198
|
parameterValues: {
|
|
199
199
|
[x: string]: {
|
|
200
200
|
entrypointIndex: number | null;
|
|
@@ -316,7 +316,7 @@ export default class {
|
|
|
316
316
|
};
|
|
317
317
|
};
|
|
318
318
|
}[];
|
|
319
|
-
|
|
319
|
+
variableProfileId?: string | undefined;
|
|
320
320
|
parameterValues: {
|
|
321
321
|
[x: string]: {
|
|
322
322
|
entrypointIndex: number | null;
|
|
@@ -437,7 +437,7 @@ export default class {
|
|
|
437
437
|
};
|
|
438
438
|
};
|
|
439
439
|
}[];
|
|
440
|
-
|
|
440
|
+
variableProfileId?: string | undefined;
|
|
441
441
|
parameterValues: {
|
|
442
442
|
[x: string]: {
|
|
443
443
|
entrypointIndex: number | null;
|
|
@@ -516,7 +516,7 @@ export default class {
|
|
|
516
516
|
};
|
|
517
517
|
};
|
|
518
518
|
}[] | undefined;
|
|
519
|
-
|
|
519
|
+
variableProfileId?: string | undefined;
|
|
520
520
|
parameterValues?: {
|
|
521
521
|
[x: string]: {
|
|
522
522
|
entrypointIndex: number | null;
|
|
@@ -700,7 +700,7 @@ export default class {
|
|
|
700
700
|
};
|
|
701
701
|
};
|
|
702
702
|
}[];
|
|
703
|
-
|
|
703
|
+
variableProfileId?: string | undefined;
|
|
704
704
|
parameterValues: {
|
|
705
705
|
[x: string]: {
|
|
706
706
|
entrypointIndex: number | null;
|
|
@@ -831,7 +831,7 @@ export default class {
|
|
|
831
831
|
};
|
|
832
832
|
};
|
|
833
833
|
}[];
|
|
834
|
-
|
|
834
|
+
variableProfileId?: string | undefined;
|
|
835
835
|
parameterValues: {
|
|
836
836
|
[x: string]: {
|
|
837
837
|
entrypointIndex: number | null;
|
|
@@ -951,7 +951,7 @@ export default class {
|
|
|
951
951
|
};
|
|
952
952
|
};
|
|
953
953
|
}[];
|
|
954
|
-
|
|
954
|
+
variableProfileId?: string | undefined;
|
|
955
955
|
parameterValues: {
|
|
956
956
|
[x: string]: {
|
|
957
957
|
entrypointIndex: number | null;
|
package/build/definitions.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ export declare type SerializedWorkflow = {
|
|
|
115
115
|
readonly updatedAt: (Date) & readonlyP;
|
|
116
116
|
name: string;
|
|
117
117
|
description?: string;
|
|
118
|
-
|
|
118
|
+
variableProfileId?: string;
|
|
119
119
|
parameterValues: {
|
|
120
120
|
[key: string]: {
|
|
121
121
|
entrypointIndex: number | null;
|
|
@@ -147,7 +147,7 @@ export declare type Partial_SerializedWorkflow = {
|
|
|
147
147
|
readonly updatedAt?: (Date) & readonlyP;
|
|
148
148
|
name?: string;
|
|
149
149
|
description?: string;
|
|
150
|
-
|
|
150
|
+
variableProfileId?: string;
|
|
151
151
|
parameterValues?: {
|
|
152
152
|
[key: string]: {
|
|
153
153
|
entrypointIndex: number | null;
|
package/package.json
CHANGED