@rlvt/workflows-openapi-client 1.0.133 → 1.0.134

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
@@ -187,10 +187,19 @@ export default class {
187
187
  };
188
188
  };
189
189
  }[];
190
+ parameterValues: {
191
+ [x: string]: {
192
+ entrypointIndex: number | null;
193
+ value: string;
194
+ }[];
195
+ };
190
196
  readonly urls?: {
191
197
  click: string;
192
198
  display: string;
193
199
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
200
+ parameters: {
201
+ [x: string]: string;
202
+ };
194
203
  }[] | undefined;
195
204
  readonly status: (WorkflowStatus.DRAFT & {
196
205
  readonly?: "__readonly" | undefined;
@@ -293,10 +302,19 @@ export default class {
293
302
  };
294
303
  };
295
304
  }[];
305
+ parameterValues: {
306
+ [x: string]: {
307
+ entrypointIndex: number | null;
308
+ value: string;
309
+ }[];
310
+ };
296
311
  readonly urls?: {
297
312
  click: string;
298
313
  display: string;
299
314
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
315
+ parameters: {
316
+ [x: string]: string;
317
+ };
300
318
  }[] | undefined;
301
319
  readonly status: (WorkflowStatus.DRAFT & {
302
320
  readonly?: "__readonly" | undefined;
@@ -398,10 +416,19 @@ export default class {
398
416
  };
399
417
  };
400
418
  }[];
419
+ parameterValues: {
420
+ [x: string]: {
421
+ entrypointIndex: number | null;
422
+ value: string;
423
+ }[];
424
+ };
401
425
  readonly urls?: {
402
426
  click: string;
403
427
  display: string;
404
428
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
429
+ parameters: {
430
+ [x: string]: string;
431
+ };
405
432
  }[] | undefined;
406
433
  readonly status: (WorkflowStatus.DRAFT & {
407
434
  readonly?: "__readonly" | undefined;
@@ -467,10 +494,19 @@ export default class {
467
494
  };
468
495
  };
469
496
  }[] | undefined;
497
+ parameterValues?: {
498
+ [x: string]: {
499
+ entrypointIndex: number | null;
500
+ value: string;
501
+ }[];
502
+ } | undefined;
470
503
  readonly urls?: {
471
504
  click: string;
472
505
  display: string;
473
506
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
507
+ parameters: {
508
+ [x: string]: string;
509
+ };
474
510
  }[] | undefined;
475
511
  readonly status?: (WorkflowStatus.DRAFT & {
476
512
  readonly?: "__readonly" | undefined;
@@ -629,10 +665,19 @@ export default class {
629
665
  };
630
666
  };
631
667
  }[];
668
+ parameterValues: {
669
+ [x: string]: {
670
+ entrypointIndex: number | null;
671
+ value: string;
672
+ }[];
673
+ };
632
674
  readonly urls?: {
633
675
  click: string;
634
676
  display: string;
635
677
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
678
+ parameters: {
679
+ [x: string]: string;
680
+ };
636
681
  }[] | undefined;
637
682
  readonly status: (WorkflowStatus.DRAFT & {
638
683
  readonly?: "__readonly" | undefined;
@@ -744,10 +789,19 @@ export default class {
744
789
  };
745
790
  };
746
791
  }[];
792
+ parameterValues: {
793
+ [x: string]: {
794
+ entrypointIndex: number | null;
795
+ value: string;
796
+ }[];
797
+ };
747
798
  readonly urls?: {
748
799
  click: string;
749
800
  display: string;
750
801
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
802
+ parameters: {
803
+ [x: string]: string;
804
+ };
751
805
  }[] | undefined;
752
806
  readonly status: (WorkflowStatus.DRAFT & {
753
807
  readonly?: "__readonly" | undefined;
@@ -848,10 +902,19 @@ export default class {
848
902
  };
849
903
  };
850
904
  }[];
905
+ parameterValues: {
906
+ [x: string]: {
907
+ entrypointIndex: number | null;
908
+ value: string;
909
+ }[];
910
+ };
851
911
  readonly urls?: {
852
912
  click: string;
853
913
  display: string;
854
914
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
915
+ parameters: {
916
+ [x: string]: string;
917
+ };
855
918
  }[] | undefined;
856
919
  readonly status: (WorkflowStatus.DRAFT & {
857
920
  readonly?: "__readonly" | undefined;
@@ -109,8 +109,17 @@ export declare type SerializedWorkflow = {
109
109
  readonly updatedAt: (Date) & readonlyP;
110
110
  name: string;
111
111
  description?: string;
112
+ parameterValues: {
113
+ [key: string]: {
114
+ entrypointIndex: number | null;
115
+ value: string;
116
+ }[];
117
+ };
112
118
  readonly urls?: ({
113
119
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
120
+ parameters: {
121
+ [key: string]: string;
122
+ };
114
123
  display: string;
115
124
  click: string;
116
125
  }[]) & readonlyP;
@@ -131,8 +140,17 @@ export declare type Partial_SerializedWorkflow = {
131
140
  readonly updatedAt?: (Date) & readonlyP;
132
141
  name?: string;
133
142
  description?: string;
143
+ parameterValues?: {
144
+ [key: string]: {
145
+ entrypointIndex: number | null;
146
+ value: string;
147
+ }[];
148
+ };
134
149
  readonly urls?: ({
135
150
  type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
151
+ parameters: {
152
+ [key: string]: string;
153
+ };
136
154
  display: string;
137
155
  click: string;
138
156
  }[]) & readonlyP;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlvt/workflows-openapi-client",
3
- "version": "1.0.133+957e9f9",
3
+ "version": "1.0.134+bd9988e",
4
4
  "description": "Openapi client for reelevant service",
5
5
  "main": "build/index.js",
6
6
  "repository": "https://github.com/reelevant-tech/openapi-clients",