@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 CHANGED
@@ -124,7 +124,9 @@ export default class {
124
124
  display?: string | undefined;
125
125
  click?: unknown;
126
126
  type: "landing-page";
127
- parameters: unknown;
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: unknown;
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: unknown;
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: unknown;
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: unknown;
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: unknown;
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: unknown;
1090
+ parameters: {
1091
+ [x: string]: string;
1092
+ };
1079
1093
  } | {
1080
1094
  display: string;
1081
1095
  click: string;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlvt/workflows-openapi-client",
3
- "version": "1.0.557+ccb7f88",
3
+ "version": "1.0.558+e0061b1",
4
4
  "description": "Openapi client for reelevant service",
5
5
  "main": "build/index.js",
6
6
  "repository": "https://github.com/reelevant-tech/openapi-clients",