@rlvt/workflows-openapi-client 1.0.492 → 1.0.494
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 +8 -0
- package/build/definitions.d.ts +2 -0
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -216,6 +216,7 @@ export default class {
|
|
|
216
216
|
entrypointId: string | null;
|
|
217
217
|
})[];
|
|
218
218
|
};
|
|
219
|
+
useRustContentEngine?: boolean | undefined;
|
|
219
220
|
readonly urls?: {
|
|
220
221
|
click: string;
|
|
221
222
|
display: string;
|
|
@@ -355,6 +356,7 @@ export default class {
|
|
|
355
356
|
entrypointId: string | null;
|
|
356
357
|
})[];
|
|
357
358
|
};
|
|
359
|
+
useRustContentEngine?: boolean | undefined;
|
|
358
360
|
readonly urls?: {
|
|
359
361
|
click: string;
|
|
360
362
|
display: string;
|
|
@@ -492,6 +494,7 @@ export default class {
|
|
|
492
494
|
entrypointId: string | null;
|
|
493
495
|
})[];
|
|
494
496
|
};
|
|
497
|
+
useRustContentEngine?: boolean | undefined;
|
|
495
498
|
readonly urls?: {
|
|
496
499
|
click: string;
|
|
497
500
|
display: string;
|
|
@@ -581,6 +584,7 @@ export default class {
|
|
|
581
584
|
entrypointId: string | null;
|
|
582
585
|
})[];
|
|
583
586
|
} | undefined;
|
|
587
|
+
useRustContentEngine?: boolean | undefined;
|
|
584
588
|
readonly urls?: {
|
|
585
589
|
click: string;
|
|
586
590
|
display: string;
|
|
@@ -836,6 +840,7 @@ export default class {
|
|
|
836
840
|
entrypointId: string | null;
|
|
837
841
|
})[];
|
|
838
842
|
};
|
|
843
|
+
useRustContentEngine?: boolean | undefined;
|
|
839
844
|
readonly urls?: {
|
|
840
845
|
click: string;
|
|
841
846
|
display: string;
|
|
@@ -981,6 +986,7 @@ export default class {
|
|
|
981
986
|
entrypointId: string | null;
|
|
982
987
|
})[];
|
|
983
988
|
};
|
|
989
|
+
useRustContentEngine?: boolean | undefined;
|
|
984
990
|
readonly urls?: {
|
|
985
991
|
click: string;
|
|
986
992
|
display: string;
|
|
@@ -1115,6 +1121,7 @@ export default class {
|
|
|
1115
1121
|
entrypointId: string | null;
|
|
1116
1122
|
})[];
|
|
1117
1123
|
};
|
|
1124
|
+
useRustContentEngine?: boolean | undefined;
|
|
1118
1125
|
readonly urls?: {
|
|
1119
1126
|
click: string;
|
|
1120
1127
|
display: string;
|
|
@@ -1255,6 +1262,7 @@ export default class {
|
|
|
1255
1262
|
entrypointId: string | null;
|
|
1256
1263
|
})[];
|
|
1257
1264
|
};
|
|
1265
|
+
useRustContentEngine?: boolean | undefined;
|
|
1258
1266
|
readonly urls?: {
|
|
1259
1267
|
click: string;
|
|
1260
1268
|
display: string;
|
package/build/definitions.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ export declare type SerializedWorkflow = {
|
|
|
195
195
|
value: string;
|
|
196
196
|
})[];
|
|
197
197
|
};
|
|
198
|
+
useRustContentEngine?: boolean;
|
|
198
199
|
readonly urls?: ({
|
|
199
200
|
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image" | "mobile-sms-preview";
|
|
200
201
|
parameters: {
|
|
@@ -285,6 +286,7 @@ export declare type LegacyWorkflowDocument_Partial = {
|
|
|
285
286
|
value: string;
|
|
286
287
|
})[];
|
|
287
288
|
};
|
|
289
|
+
useRustContentEngine?: boolean;
|
|
288
290
|
readonly urls?: ({
|
|
289
291
|
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image" | "mobile-sms-preview";
|
|
290
292
|
parameters: {
|
package/package.json
CHANGED