@rlvt/workflows-openapi-client 1.0.130 → 1.0.131
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 -8
- package/build/definitions.d.ts +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export default class {
|
|
|
48
48
|
template: {
|
|
49
49
|
entrypoints: {
|
|
50
50
|
node: string;
|
|
51
|
-
type: "email" | "raw";
|
|
51
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
52
52
|
}[];
|
|
53
53
|
nodes: {
|
|
54
54
|
[x: string]: {
|
|
@@ -144,7 +144,7 @@ export default class {
|
|
|
144
144
|
definition: {
|
|
145
145
|
entrypoints: {
|
|
146
146
|
node: string;
|
|
147
|
-
type: "email" | "raw";
|
|
147
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
148
148
|
}[];
|
|
149
149
|
nodes: {
|
|
150
150
|
[x: string]: {
|
|
@@ -249,7 +249,7 @@ export default class {
|
|
|
249
249
|
definition: {
|
|
250
250
|
entrypoints: {
|
|
251
251
|
node: string;
|
|
252
|
-
type: "email" | "raw";
|
|
252
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
253
253
|
}[];
|
|
254
254
|
nodes: {
|
|
255
255
|
[x: string]: {
|
|
@@ -353,7 +353,7 @@ export default class {
|
|
|
353
353
|
definition: {
|
|
354
354
|
entrypoints: {
|
|
355
355
|
node: string;
|
|
356
|
-
type: "email" | "raw";
|
|
356
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
357
357
|
}[];
|
|
358
358
|
nodes: {
|
|
359
359
|
[x: string]: {
|
|
@@ -424,7 +424,7 @@ export default class {
|
|
|
424
424
|
definition?: {
|
|
425
425
|
entrypoints: {
|
|
426
426
|
node: string;
|
|
427
|
-
type: "email" | "raw";
|
|
427
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
428
428
|
}[];
|
|
429
429
|
nodes: {
|
|
430
430
|
[x: string]: {
|
|
@@ -494,7 +494,7 @@ export default class {
|
|
|
494
494
|
definition: {
|
|
495
495
|
entrypoints: {
|
|
496
496
|
node: string;
|
|
497
|
-
type: "email" | "raw";
|
|
497
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
498
498
|
}[];
|
|
499
499
|
nodes: {
|
|
500
500
|
[x: string]: {
|
|
@@ -608,7 +608,7 @@ export default class {
|
|
|
608
608
|
definition: {
|
|
609
609
|
entrypoints: {
|
|
610
610
|
node: string;
|
|
611
|
-
type: "email" | "raw";
|
|
611
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
612
612
|
}[];
|
|
613
613
|
nodes: {
|
|
614
614
|
[x: string]: {
|
|
@@ -711,7 +711,7 @@ export default class {
|
|
|
711
711
|
definition: {
|
|
712
712
|
entrypoints: {
|
|
713
713
|
node: string;
|
|
714
|
-
type: "email" | "raw";
|
|
714
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
715
715
|
}[];
|
|
716
716
|
nodes: {
|
|
717
717
|
[x: string]: {
|
package/build/definitions.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare type AnyValue = unknown | null;
|
|
|
21
21
|
export declare type Workflow = {
|
|
22
22
|
entrypoints: {
|
|
23
23
|
node: string;
|
|
24
|
-
type: "email" | "raw";
|
|
24
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
25
25
|
}[];
|
|
26
26
|
nodes: {
|
|
27
27
|
[key: string]: {
|
package/package.json
CHANGED