@rlvt/workflows-openapi-client 1.0.128 → 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 +10 -9
- package/build/definitions.d.ts +3 -2
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export default class {
|
|
|
33
33
|
code?: number;
|
|
34
34
|
message: string;
|
|
35
35
|
data: {
|
|
36
|
+
description?: string;
|
|
36
37
|
readonly id: string & {
|
|
37
38
|
readonly?: "__readonly";
|
|
38
39
|
};
|
|
@@ -41,13 +42,13 @@ export default class {
|
|
|
41
42
|
};
|
|
42
43
|
name: string;
|
|
43
44
|
icon: string;
|
|
44
|
-
slug
|
|
45
|
+
slug?: string;
|
|
45
46
|
categories: string[];
|
|
46
47
|
feature?: string;
|
|
47
48
|
template: {
|
|
48
49
|
entrypoints: {
|
|
49
50
|
node: string;
|
|
50
|
-
type: "email" | "raw";
|
|
51
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
51
52
|
}[];
|
|
52
53
|
nodes: {
|
|
53
54
|
[x: string]: {
|
|
@@ -143,7 +144,7 @@ export default class {
|
|
|
143
144
|
definition: {
|
|
144
145
|
entrypoints: {
|
|
145
146
|
node: string;
|
|
146
|
-
type: "email" | "raw";
|
|
147
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
147
148
|
}[];
|
|
148
149
|
nodes: {
|
|
149
150
|
[x: string]: {
|
|
@@ -248,7 +249,7 @@ export default class {
|
|
|
248
249
|
definition: {
|
|
249
250
|
entrypoints: {
|
|
250
251
|
node: string;
|
|
251
|
-
type: "email" | "raw";
|
|
252
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
252
253
|
}[];
|
|
253
254
|
nodes: {
|
|
254
255
|
[x: string]: {
|
|
@@ -352,7 +353,7 @@ export default class {
|
|
|
352
353
|
definition: {
|
|
353
354
|
entrypoints: {
|
|
354
355
|
node: string;
|
|
355
|
-
type: "email" | "raw";
|
|
356
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
356
357
|
}[];
|
|
357
358
|
nodes: {
|
|
358
359
|
[x: string]: {
|
|
@@ -423,7 +424,7 @@ export default class {
|
|
|
423
424
|
definition?: {
|
|
424
425
|
entrypoints: {
|
|
425
426
|
node: string;
|
|
426
|
-
type: "email" | "raw";
|
|
427
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
427
428
|
}[];
|
|
428
429
|
nodes: {
|
|
429
430
|
[x: string]: {
|
|
@@ -493,7 +494,7 @@ export default class {
|
|
|
493
494
|
definition: {
|
|
494
495
|
entrypoints: {
|
|
495
496
|
node: string;
|
|
496
|
-
type: "email" | "raw";
|
|
497
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
497
498
|
}[];
|
|
498
499
|
nodes: {
|
|
499
500
|
[x: string]: {
|
|
@@ -607,7 +608,7 @@ export default class {
|
|
|
607
608
|
definition: {
|
|
608
609
|
entrypoints: {
|
|
609
610
|
node: string;
|
|
610
|
-
type: "email" | "raw";
|
|
611
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
611
612
|
}[];
|
|
612
613
|
nodes: {
|
|
613
614
|
[x: string]: {
|
|
@@ -710,7 +711,7 @@ export default class {
|
|
|
710
711
|
definition: {
|
|
711
712
|
entrypoints: {
|
|
712
713
|
node: string;
|
|
713
|
-
type: "email" | "raw";
|
|
714
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
714
715
|
}[];
|
|
715
716
|
nodes: {
|
|
716
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]: {
|
|
@@ -53,7 +53,8 @@ export declare type SerializedWorkflowTemplate = {
|
|
|
53
53
|
readonly companyId?: (string) & readonlyP;
|
|
54
54
|
name: string;
|
|
55
55
|
icon: string;
|
|
56
|
-
slug
|
|
56
|
+
slug?: string;
|
|
57
|
+
description?: string;
|
|
57
58
|
categories: string[];
|
|
58
59
|
feature?: string;
|
|
59
60
|
template: Workflow;
|
package/build/definitions.js
CHANGED
|
@@ -16,4 +16,4 @@ var WorkflowStatus;
|
|
|
16
16
|
WorkflowStatus["PUBLISHED"] = "published";
|
|
17
17
|
WorkflowStatus["ERROR"] = "error";
|
|
18
18
|
})(WorkflowStatus = exports.WorkflowStatus || (exports.WorkflowStatus = {}));
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBZ0ZwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUE2QkQsSUFBWSxjQUtYO0FBTEQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUt6QiJ9
|
package/package.json
CHANGED