@rlvt/workflows-openapi-client 1.0.557 → 1.0.558
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 +21 -7
- package/build/definitions.d.ts +3 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -124,7 +124,9 @@ export default class {
|
|
|
124
124
|
display?: string | undefined;
|
|
125
125
|
click?: unknown;
|
|
126
126
|
type: "landing-page";
|
|
127
|
-
parameters:
|
|
127
|
+
parameters: {
|
|
128
|
+
[x: string]: string;
|
|
129
|
+
};
|
|
128
130
|
} | {
|
|
129
131
|
display: string;
|
|
130
132
|
click: string;
|
|
@@ -273,7 +275,9 @@ export default class {
|
|
|
273
275
|
display?: string | undefined;
|
|
274
276
|
click?: unknown;
|
|
275
277
|
type: "landing-page";
|
|
276
|
-
parameters:
|
|
278
|
+
parameters: {
|
|
279
|
+
[x: string]: string;
|
|
280
|
+
};
|
|
277
281
|
} | {
|
|
278
282
|
display: string;
|
|
279
283
|
click: string;
|
|
@@ -420,7 +424,9 @@ export default class {
|
|
|
420
424
|
display?: string | undefined;
|
|
421
425
|
click?: unknown;
|
|
422
426
|
type: "landing-page";
|
|
423
|
-
parameters:
|
|
427
|
+
parameters: {
|
|
428
|
+
[x: string]: string;
|
|
429
|
+
};
|
|
424
430
|
} | {
|
|
425
431
|
display: string;
|
|
426
432
|
click: string;
|
|
@@ -622,7 +628,9 @@ export default class {
|
|
|
622
628
|
display?: string | undefined;
|
|
623
629
|
click?: unknown;
|
|
624
630
|
type: "landing-page";
|
|
625
|
-
parameters:
|
|
631
|
+
parameters: {
|
|
632
|
+
[x: string]: string;
|
|
633
|
+
};
|
|
626
634
|
} | {
|
|
627
635
|
display: string;
|
|
628
636
|
click: string;
|
|
@@ -777,7 +785,9 @@ export default class {
|
|
|
777
785
|
display?: string | undefined;
|
|
778
786
|
click?: unknown;
|
|
779
787
|
type: "landing-page";
|
|
780
|
-
parameters:
|
|
788
|
+
parameters: {
|
|
789
|
+
[x: string]: string;
|
|
790
|
+
};
|
|
781
791
|
} | {
|
|
782
792
|
display: string;
|
|
783
793
|
click: string;
|
|
@@ -921,7 +931,9 @@ export default class {
|
|
|
921
931
|
display?: string | undefined;
|
|
922
932
|
click?: unknown;
|
|
923
933
|
type: "landing-page";
|
|
924
|
-
parameters:
|
|
934
|
+
parameters: {
|
|
935
|
+
[x: string]: string;
|
|
936
|
+
};
|
|
925
937
|
} | {
|
|
926
938
|
display: string;
|
|
927
939
|
click: string;
|
|
@@ -1075,7 +1087,9 @@ export default class {
|
|
|
1075
1087
|
display?: string | undefined;
|
|
1076
1088
|
click?: unknown;
|
|
1077
1089
|
type: "landing-page";
|
|
1078
|
-
parameters:
|
|
1090
|
+
parameters: {
|
|
1091
|
+
[x: string]: string;
|
|
1092
|
+
};
|
|
1079
1093
|
} | {
|
|
1080
1094
|
display: string;
|
|
1081
1095
|
click: string;
|
package/build/definitions.d.ts
CHANGED
|
@@ -157,7 +157,9 @@ export declare enum WorkflowStatus {
|
|
|
157
157
|
export declare type SerializedWorkflow = {
|
|
158
158
|
readonly urls?: (({
|
|
159
159
|
type: "landing-page";
|
|
160
|
-
parameters: {
|
|
160
|
+
parameters: {
|
|
161
|
+
[key: string]: string;
|
|
162
|
+
};
|
|
161
163
|
display?: string;
|
|
162
164
|
click?: unknown;
|
|
163
165
|
} | {
|
package/package.json
CHANGED