@ibiliaze/global-vars 1.139.0 → 1.140.0
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/dist/ticketops/roles/account.d.ts +0 -3
- package/dist/ticketops/roles/admin.d.ts +0 -2
- package/dist/ticketops/roles/blog.d.ts +0 -3
- package/dist/ticketops/roles/campaign.d.ts +8 -5
- package/dist/ticketops/roles/category.d.ts +0 -3
- package/dist/ticketops/roles/checkout.d.ts +16 -0
- package/dist/ticketops/roles/checkout.js +4 -0
- package/dist/ticketops/roles/email.d.ts +26 -0
- package/dist/ticketops/roles/email.js +26 -3
- package/dist/ticketops/roles/event.d.ts +2 -4
- package/dist/ticketops/roles/fail.d.ts +41 -1
- package/dist/ticketops/roles/fail.js +40 -6
- package/dist/ticketops/roles/file.d.ts +32 -0
- package/dist/ticketops/roles/file.js +9 -0
- package/dist/ticketops/roles/fixture.d.ts +0 -3
- package/dist/ticketops/roles/flow.d.ts +0 -4
- package/dist/ticketops/roles/group.d.ts +0 -4
- package/dist/ticketops/roles/job.d.ts +0 -5
- package/dist/ticketops/roles/log.d.ts +0 -1
- package/dist/ticketops/roles/notification.d.ts +0 -3
- package/dist/ticketops/roles/page.d.ts +0 -4
- package/dist/ticketops/roles/product.d.ts +0 -3
- package/dist/ticketops/roles/prospect.d.ts +0 -4
- package/dist/ticketops/roles/report.d.ts +47 -1
- package/dist/ticketops/roles/report.js +47 -7
- package/dist/ticketops/roles/review.d.ts +62 -1
- package/dist/ticketops/roles/review.js +63 -9
- package/dist/ticketops/roles/role.d.ts +43 -1
- package/dist/ticketops/roles/role.js +46 -7
- package/dist/ticketops/roles/sale.d.ts +74 -1
- package/dist/ticketops/roles/sale.js +64 -14
- package/dist/ticketops/roles/season.d.ts +43 -1
- package/dist/ticketops/roles/season.js +46 -7
- package/dist/ticketops/roles/seat.d.ts +299 -1
- package/dist/ticketops/roles/seat.js +126 -40
- package/dist/ticketops/roles/section.d.ts +47 -1
- package/dist/ticketops/roles/section.js +47 -7
- package/dist/ticketops/roles/staff.d.ts +121 -1
- package/dist/ticketops/roles/staff.js +110 -14
- package/dist/ticketops/roles/user.d.ts +120 -1
- package/dist/ticketops/roles/user.js +114 -20
- package/dist/ticketops/roles.d.ts +2037 -215
- package/dist/ticketops/roles.js +20 -20
- package/package.json +2 -2
|
@@ -36,7 +36,6 @@ export declare const accountRoleDefs: <TId, TDate>() => readonly [{
|
|
|
36
36
|
};
|
|
37
37
|
readonly response_404: {
|
|
38
38
|
message: string;
|
|
39
|
-
error: string;
|
|
40
39
|
};
|
|
41
40
|
}, {
|
|
42
41
|
readonly method: "get";
|
|
@@ -68,7 +67,6 @@ export declare const accountRoleDefs: <TId, TDate>() => readonly [{
|
|
|
68
67
|
readonly role: "putAccountById";
|
|
69
68
|
readonly name: "Update account";
|
|
70
69
|
readonly response_404: {
|
|
71
|
-
account: AccountBase<TId, TDate> | null;
|
|
72
70
|
message: string;
|
|
73
71
|
};
|
|
74
72
|
readonly response_200: {
|
|
@@ -85,7 +83,6 @@ export declare const accountRoleDefs: <TId, TDate>() => readonly [{
|
|
|
85
83
|
readonly role: "deleteAccountById";
|
|
86
84
|
readonly name: "Delete account";
|
|
87
85
|
readonly response_404: {
|
|
88
|
-
account: AccountBase<TId, TDate> | null;
|
|
89
86
|
message: string;
|
|
90
87
|
};
|
|
91
88
|
readonly response_200: {
|
|
@@ -149,7 +149,6 @@ export declare const adminRoleDefs: <TId, TDate>() => readonly [{
|
|
|
149
149
|
message: string;
|
|
150
150
|
};
|
|
151
151
|
readonly response_404: {
|
|
152
|
-
admin: AdminBase<TId, TDate> | null;
|
|
153
152
|
message: string;
|
|
154
153
|
};
|
|
155
154
|
readonly response_500: {
|
|
@@ -166,7 +165,6 @@ export declare const adminRoleDefs: <TId, TDate>() => readonly [{
|
|
|
166
165
|
message: string;
|
|
167
166
|
};
|
|
168
167
|
readonly response_404: {
|
|
169
|
-
admin: AdminBase<TId, TDate> | null;
|
|
170
168
|
message: string;
|
|
171
169
|
};
|
|
172
170
|
readonly response_500: {
|
|
@@ -36,7 +36,6 @@ export declare const blogRoleDefs: <TId, TDate>() => readonly [{
|
|
|
36
36
|
};
|
|
37
37
|
readonly response_404: {
|
|
38
38
|
message: string;
|
|
39
|
-
error: string;
|
|
40
39
|
};
|
|
41
40
|
}, {
|
|
42
41
|
readonly method: "put";
|
|
@@ -48,7 +47,6 @@ export declare const blogRoleDefs: <TId, TDate>() => readonly [{
|
|
|
48
47
|
message: string;
|
|
49
48
|
};
|
|
50
49
|
readonly response_404: {
|
|
51
|
-
blog: BlogBase<TId, TDate> | null;
|
|
52
50
|
message: string;
|
|
53
51
|
};
|
|
54
52
|
readonly response_500: {
|
|
@@ -65,7 +63,6 @@ export declare const blogRoleDefs: <TId, TDate>() => readonly [{
|
|
|
65
63
|
message: string;
|
|
66
64
|
};
|
|
67
65
|
readonly response_404: {
|
|
68
|
-
blog: BlogBase<TId, TDate> | null;
|
|
69
66
|
message: string;
|
|
70
67
|
};
|
|
71
68
|
readonly response_500: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CampaignBase
|
|
1
|
+
import type { CampaignBase } from '../inputsDefault';
|
|
2
2
|
export declare const campaignRoleDefs: <TId, TDate>() => readonly [{
|
|
3
3
|
readonly method: "post";
|
|
4
4
|
readonly path: "/campaign";
|
|
@@ -69,7 +69,13 @@ export declare const campaignRoleDefs: <TId, TDate>() => readonly [{
|
|
|
69
69
|
readonly role: "getCampaignInsightById";
|
|
70
70
|
readonly name: "Get campaign insight";
|
|
71
71
|
readonly response_200: {
|
|
72
|
-
stages: (
|
|
72
|
+
stages: ({
|
|
73
|
+
sent: number;
|
|
74
|
+
replies: number;
|
|
75
|
+
clicks: number;
|
|
76
|
+
opens: number;
|
|
77
|
+
totalProspects: number;
|
|
78
|
+
} & {
|
|
73
79
|
stageId: string;
|
|
74
80
|
}[]) | null;
|
|
75
81
|
};
|
|
@@ -91,7 +97,6 @@ export declare const campaignRoleDefs: <TId, TDate>() => readonly [{
|
|
|
91
97
|
};
|
|
92
98
|
readonly response_404: {
|
|
93
99
|
message: string;
|
|
94
|
-
error: string;
|
|
95
100
|
};
|
|
96
101
|
}, {
|
|
97
102
|
readonly method: "put";
|
|
@@ -103,7 +108,6 @@ export declare const campaignRoleDefs: <TId, TDate>() => readonly [{
|
|
|
103
108
|
message: string;
|
|
104
109
|
};
|
|
105
110
|
readonly response_404: {
|
|
106
|
-
campaign: CampaignBase<TId, TDate> | null;
|
|
107
111
|
message: string;
|
|
108
112
|
};
|
|
109
113
|
readonly response_500: {
|
|
@@ -120,7 +124,6 @@ export declare const campaignRoleDefs: <TId, TDate>() => readonly [{
|
|
|
120
124
|
message: string;
|
|
121
125
|
};
|
|
122
126
|
readonly response_404: {
|
|
123
|
-
campaign: CampaignBase<TId, TDate> | null;
|
|
124
127
|
message: string;
|
|
125
128
|
};
|
|
126
129
|
readonly response_500: {
|
|
@@ -36,7 +36,6 @@ export declare const categoryRoleDefs: <TId, TDate>() => readonly [{
|
|
|
36
36
|
};
|
|
37
37
|
readonly response_404: {
|
|
38
38
|
message: string;
|
|
39
|
-
error: string;
|
|
40
39
|
};
|
|
41
40
|
}, {
|
|
42
41
|
readonly method: "put";
|
|
@@ -48,7 +47,6 @@ export declare const categoryRoleDefs: <TId, TDate>() => readonly [{
|
|
|
48
47
|
message: string;
|
|
49
48
|
};
|
|
50
49
|
readonly response_404: {
|
|
51
|
-
category: CategoryBase<TId, TDate> | null;
|
|
52
50
|
message: string;
|
|
53
51
|
};
|
|
54
52
|
readonly response_500: {
|
|
@@ -65,7 +63,6 @@ export declare const categoryRoleDefs: <TId, TDate>() => readonly [{
|
|
|
65
63
|
message: string;
|
|
66
64
|
};
|
|
67
65
|
readonly response_404: {
|
|
68
|
-
category: CategoryBase<TId, TDate> | null;
|
|
69
66
|
message: string;
|
|
70
67
|
};
|
|
71
68
|
readonly response_500: {
|
|
@@ -3,9 +3,25 @@ export declare const checkoutRoleDefs: readonly [{
|
|
|
3
3
|
readonly path: "/checkout/create-session";
|
|
4
4
|
readonly role: "postUtilCreateCheckoutSession";
|
|
5
5
|
readonly name: "Create checkout session";
|
|
6
|
+
readonly response_200: {
|
|
7
|
+
checkoutUrl: string;
|
|
8
|
+
data: string;
|
|
9
|
+
signature: string;
|
|
10
|
+
};
|
|
11
|
+
readonly response_201: {
|
|
12
|
+
message: string;
|
|
13
|
+
redirectUri: string;
|
|
14
|
+
};
|
|
15
|
+
readonly response_400: {
|
|
16
|
+
message: string;
|
|
17
|
+
};
|
|
6
18
|
}, {
|
|
7
19
|
readonly method: "post";
|
|
8
20
|
readonly path: "/checkout/result";
|
|
9
21
|
readonly role: "postCheckoutResult";
|
|
10
22
|
readonly name: "Handle checkout";
|
|
23
|
+
readonly response_200: {
|
|
24
|
+
message: string;
|
|
25
|
+
redirectPath?: string;
|
|
26
|
+
};
|
|
11
27
|
}];
|
|
@@ -7,11 +7,15 @@ exports.checkoutRoleDefs = [
|
|
|
7
7
|
path: '/checkout/create-session',
|
|
8
8
|
role: 'postUtilCreateCheckoutSession',
|
|
9
9
|
name: 'Create checkout session',
|
|
10
|
+
response_200: {},
|
|
11
|
+
response_201: {},
|
|
12
|
+
response_400: {},
|
|
10
13
|
},
|
|
11
14
|
{
|
|
12
15
|
method: 'post',
|
|
13
16
|
path: '/checkout/result',
|
|
14
17
|
role: 'postCheckoutResult',
|
|
15
18
|
name: 'Handle checkout',
|
|
19
|
+
response_200: {},
|
|
16
20
|
},
|
|
17
21
|
];
|
|
@@ -3,14 +3,40 @@ export declare const emailRoleDefs: readonly [{
|
|
|
3
3
|
readonly path: "/email";
|
|
4
4
|
readonly role: "postEmail";
|
|
5
5
|
readonly name: "Send email confirmation";
|
|
6
|
+
readonly response_200: {
|
|
7
|
+
message: string;
|
|
8
|
+
};
|
|
9
|
+
readonly response_400: {
|
|
10
|
+
message: string;
|
|
11
|
+
};
|
|
12
|
+
readonly response_500: {
|
|
13
|
+
message: string;
|
|
14
|
+
error: string;
|
|
15
|
+
};
|
|
6
16
|
}, {
|
|
7
17
|
readonly method: "post";
|
|
8
18
|
readonly path: "/email/push";
|
|
9
19
|
readonly role: "postEmailPush";
|
|
10
20
|
readonly name: "Send templated email";
|
|
21
|
+
readonly response_200: {
|
|
22
|
+
message: string;
|
|
23
|
+
};
|
|
24
|
+
readonly response_404: {
|
|
25
|
+
message: string;
|
|
26
|
+
};
|
|
27
|
+
readonly response_500: {
|
|
28
|
+
message: string;
|
|
29
|
+
error: string;
|
|
30
|
+
};
|
|
11
31
|
}, {
|
|
12
32
|
readonly method: "post";
|
|
13
33
|
readonly path: "/verify-recaptcha";
|
|
14
34
|
readonly role: "postVerifyRecaptcha";
|
|
15
35
|
readonly name: "Verify reCAPTCHA";
|
|
36
|
+
readonly response_200: {
|
|
37
|
+
message: string;
|
|
38
|
+
};
|
|
39
|
+
readonly response_400: {
|
|
40
|
+
message: string;
|
|
41
|
+
};
|
|
16
42
|
}];
|
|
@@ -2,7 +2,30 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.emailRoleDefs = void 0;
|
|
4
4
|
exports.emailRoleDefs = [
|
|
5
|
-
{
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
{
|
|
6
|
+
method: 'post',
|
|
7
|
+
path: '/email',
|
|
8
|
+
role: 'postEmail',
|
|
9
|
+
name: 'Send email confirmation',
|
|
10
|
+
response_200: {},
|
|
11
|
+
response_400: {},
|
|
12
|
+
response_500: {},
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
method: 'post',
|
|
16
|
+
path: '/email/push',
|
|
17
|
+
role: 'postEmailPush',
|
|
18
|
+
name: 'Send templated email',
|
|
19
|
+
response_200: {},
|
|
20
|
+
response_404: {},
|
|
21
|
+
response_500: {},
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
method: 'post',
|
|
25
|
+
path: '/verify-recaptcha',
|
|
26
|
+
role: 'postVerifyRecaptcha',
|
|
27
|
+
name: 'Verify reCAPTCHA',
|
|
28
|
+
response_200: {},
|
|
29
|
+
response_400: {},
|
|
30
|
+
},
|
|
8
31
|
];
|
|
@@ -5,7 +5,7 @@ export declare const eventRoleDefs: <TId, TDate>() => readonly [{
|
|
|
5
5
|
readonly role: "postEventBook";
|
|
6
6
|
readonly name: "Book event";
|
|
7
7
|
readonly response_201: {
|
|
8
|
-
|
|
8
|
+
url: string;
|
|
9
9
|
message: string;
|
|
10
10
|
};
|
|
11
11
|
readonly response_400: {
|
|
@@ -48,6 +48,7 @@ export declare const eventRoleDefs: <TId, TDate>() => readonly [{
|
|
|
48
48
|
readonly name: "Request booking cancel";
|
|
49
49
|
readonly response_200: {
|
|
50
50
|
message: string;
|
|
51
|
+
event: EventBase<TId, TDate>;
|
|
51
52
|
};
|
|
52
53
|
readonly response_400: {
|
|
53
54
|
message: string;
|
|
@@ -80,7 +81,6 @@ export declare const eventRoleDefs: <TId, TDate>() => readonly [{
|
|
|
80
81
|
};
|
|
81
82
|
readonly response_404: {
|
|
82
83
|
message: string;
|
|
83
|
-
error: string;
|
|
84
84
|
};
|
|
85
85
|
}, {
|
|
86
86
|
readonly method: "put";
|
|
@@ -92,7 +92,6 @@ export declare const eventRoleDefs: <TId, TDate>() => readonly [{
|
|
|
92
92
|
message: string;
|
|
93
93
|
};
|
|
94
94
|
readonly response_404: {
|
|
95
|
-
event: EventBase<TId, TDate> | null;
|
|
96
95
|
message: string;
|
|
97
96
|
};
|
|
98
97
|
readonly response_500: {
|
|
@@ -122,7 +121,6 @@ export declare const eventRoleDefs: <TId, TDate>() => readonly [{
|
|
|
122
121
|
message: string;
|
|
123
122
|
};
|
|
124
123
|
readonly response_404: {
|
|
125
|
-
event: EventBase<TId, TDate> | null;
|
|
126
124
|
message: string;
|
|
127
125
|
};
|
|
128
126
|
readonly response_500: {
|
|
@@ -1,21 +1,61 @@
|
|
|
1
|
-
|
|
1
|
+
import type { FailBase } from '../inputsDefault';
|
|
2
|
+
export declare const failRoleDefs: <TId, TDate>() => readonly [{
|
|
2
3
|
readonly method: "get";
|
|
3
4
|
readonly path: "/fail";
|
|
4
5
|
readonly role: "getFails";
|
|
5
6
|
readonly name: "Get fails";
|
|
7
|
+
readonly response_200: {
|
|
8
|
+
fails: FailBase<TId, TDate>[];
|
|
9
|
+
count: number;
|
|
10
|
+
};
|
|
11
|
+
readonly response_500: {
|
|
12
|
+
message: string;
|
|
13
|
+
error: string;
|
|
14
|
+
};
|
|
6
15
|
}, {
|
|
7
16
|
readonly method: "get";
|
|
8
17
|
readonly path: "/fail/run/:id";
|
|
9
18
|
readonly role: "getFailRunById";
|
|
10
19
|
readonly name: "Run fail job by ID";
|
|
20
|
+
readonly response_200: {
|
|
21
|
+
message: string;
|
|
22
|
+
};
|
|
23
|
+
readonly response_400: {
|
|
24
|
+
message: string;
|
|
25
|
+
};
|
|
26
|
+
readonly response_404: {
|
|
27
|
+
message: string;
|
|
28
|
+
};
|
|
29
|
+
readonly response_500: {
|
|
30
|
+
message: string;
|
|
31
|
+
error: string;
|
|
32
|
+
};
|
|
11
33
|
}, {
|
|
12
34
|
readonly method: "delete";
|
|
13
35
|
readonly path: "/fail/all";
|
|
14
36
|
readonly role: "deleteFailsAll";
|
|
15
37
|
readonly name: "Delete all fails";
|
|
38
|
+
readonly response_200: {
|
|
39
|
+
message: string;
|
|
40
|
+
};
|
|
41
|
+
readonly response_500: {
|
|
42
|
+
message: string;
|
|
43
|
+
error: string;
|
|
44
|
+
};
|
|
16
45
|
}, {
|
|
17
46
|
readonly method: "delete";
|
|
18
47
|
readonly path: "/fail/:id";
|
|
19
48
|
readonly role: "deleteFailById";
|
|
20
49
|
readonly name: "Delete fail by ID";
|
|
50
|
+
readonly response_200: {
|
|
51
|
+
fail: FailBase<TId, TDate>;
|
|
52
|
+
message: string;
|
|
53
|
+
};
|
|
54
|
+
readonly response_404: {
|
|
55
|
+
message: string;
|
|
56
|
+
};
|
|
57
|
+
readonly response_500: {
|
|
58
|
+
message: string;
|
|
59
|
+
error: string;
|
|
60
|
+
};
|
|
21
61
|
}];
|
|
@@ -1,9 +1,43 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.failRoleDefs = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
const failRoleDefs = () => {
|
|
5
|
+
return [
|
|
6
|
+
{
|
|
7
|
+
method: 'get',
|
|
8
|
+
path: '/fail',
|
|
9
|
+
role: 'getFails',
|
|
10
|
+
name: 'Get fails',
|
|
11
|
+
response_200: {},
|
|
12
|
+
response_500: {},
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
method: 'get',
|
|
16
|
+
path: '/fail/run/:id',
|
|
17
|
+
role: 'getFailRunById',
|
|
18
|
+
name: 'Run fail job by ID',
|
|
19
|
+
response_200: {},
|
|
20
|
+
response_400: {},
|
|
21
|
+
response_404: {},
|
|
22
|
+
response_500: {},
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
method: 'delete',
|
|
26
|
+
path: '/fail/all',
|
|
27
|
+
role: 'deleteFailsAll',
|
|
28
|
+
name: 'Delete all fails',
|
|
29
|
+
response_200: {},
|
|
30
|
+
response_500: {},
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
method: 'delete',
|
|
34
|
+
path: '/fail/:id',
|
|
35
|
+
role: 'deleteFailById',
|
|
36
|
+
name: 'Delete fail by ID',
|
|
37
|
+
response_200: {},
|
|
38
|
+
response_404: {},
|
|
39
|
+
response_500: {},
|
|
40
|
+
},
|
|
41
|
+
];
|
|
42
|
+
};
|
|
43
|
+
exports.failRoleDefs = failRoleDefs;
|
|
@@ -3,14 +3,46 @@ export declare const fileRoleDefs: readonly [{
|
|
|
3
3
|
readonly path: "/util/file/upload/:id";
|
|
4
4
|
readonly role: "postUtilFileUploadById";
|
|
5
5
|
readonly name: "Upload file by ID";
|
|
6
|
+
readonly response_200: {
|
|
7
|
+
message: string;
|
|
8
|
+
secure_url: string;
|
|
9
|
+
};
|
|
10
|
+
readonly response_400: {
|
|
11
|
+
message: string;
|
|
12
|
+
};
|
|
13
|
+
readonly response_500: {
|
|
14
|
+
message: string;
|
|
15
|
+
error?: string;
|
|
16
|
+
};
|
|
6
17
|
}, {
|
|
7
18
|
readonly method: "post";
|
|
8
19
|
readonly path: "/util/file/delete";
|
|
9
20
|
readonly role: "postUtilFileDelete";
|
|
10
21
|
readonly name: "Delete files";
|
|
22
|
+
readonly response_200: {
|
|
23
|
+
message?: string;
|
|
24
|
+
};
|
|
25
|
+
readonly response_400: {
|
|
26
|
+
message: string;
|
|
27
|
+
};
|
|
28
|
+
readonly response_500: {
|
|
29
|
+
message: string;
|
|
30
|
+
error?: string;
|
|
31
|
+
};
|
|
11
32
|
}, {
|
|
12
33
|
readonly method: "post";
|
|
13
34
|
readonly path: "/util/pdf/create";
|
|
14
35
|
readonly role: "postUtilPdfCreate";
|
|
15
36
|
readonly name: "Create PDF";
|
|
37
|
+
readonly response_201: {
|
|
38
|
+
message: string;
|
|
39
|
+
fileUrl: string;
|
|
40
|
+
};
|
|
41
|
+
readonly response_400: {
|
|
42
|
+
message: string;
|
|
43
|
+
};
|
|
44
|
+
readonly response_500: {
|
|
45
|
+
message: string;
|
|
46
|
+
error?: string;
|
|
47
|
+
};
|
|
16
48
|
}];
|
|
@@ -7,17 +7,26 @@ exports.fileRoleDefs = [
|
|
|
7
7
|
path: '/util/file/upload/:id',
|
|
8
8
|
role: 'postUtilFileUploadById',
|
|
9
9
|
name: 'Upload file by ID',
|
|
10
|
+
response_200: {},
|
|
11
|
+
response_400: {},
|
|
12
|
+
response_500: {},
|
|
10
13
|
},
|
|
11
14
|
{
|
|
12
15
|
method: 'post',
|
|
13
16
|
path: '/util/file/delete',
|
|
14
17
|
role: 'postUtilFileDelete',
|
|
15
18
|
name: 'Delete files',
|
|
19
|
+
response_200: {},
|
|
20
|
+
response_400: {},
|
|
21
|
+
response_500: {},
|
|
16
22
|
},
|
|
17
23
|
{
|
|
18
24
|
method: 'post',
|
|
19
25
|
path: '/util/pdf/create',
|
|
20
26
|
role: 'postUtilPdfCreate',
|
|
21
27
|
name: 'Create PDF',
|
|
28
|
+
response_201: {},
|
|
29
|
+
response_400: {},
|
|
30
|
+
response_500: {},
|
|
22
31
|
},
|
|
23
32
|
];
|
|
@@ -36,7 +36,6 @@ export declare const fixtureRoleDefs: <TId, TDate>() => readonly [{
|
|
|
36
36
|
};
|
|
37
37
|
readonly response_404: {
|
|
38
38
|
message: string;
|
|
39
|
-
error: string;
|
|
40
39
|
};
|
|
41
40
|
}, {
|
|
42
41
|
readonly method: "put";
|
|
@@ -48,7 +47,6 @@ export declare const fixtureRoleDefs: <TId, TDate>() => readonly [{
|
|
|
48
47
|
message: string;
|
|
49
48
|
};
|
|
50
49
|
readonly response_404: {
|
|
51
|
-
fixture: FixtureBase<TId, TDate> | null;
|
|
52
50
|
message: string;
|
|
53
51
|
};
|
|
54
52
|
readonly response_500: {
|
|
@@ -65,7 +63,6 @@ export declare const fixtureRoleDefs: <TId, TDate>() => readonly [{
|
|
|
65
63
|
message: string;
|
|
66
64
|
};
|
|
67
65
|
readonly response_404: {
|
|
68
|
-
fixture: FixtureBase<TId, TDate> | null;
|
|
69
66
|
message: string;
|
|
70
67
|
};
|
|
71
68
|
readonly response_500: {
|
|
@@ -48,7 +48,6 @@ export declare const flowFlowDefs: <TId, TDate>() => readonly [{
|
|
|
48
48
|
};
|
|
49
49
|
readonly response_404: {
|
|
50
50
|
message: string;
|
|
51
|
-
error: string;
|
|
52
51
|
};
|
|
53
52
|
}, {
|
|
54
53
|
readonly method: "put";
|
|
@@ -60,9 +59,7 @@ export declare const flowFlowDefs: <TId, TDate>() => readonly [{
|
|
|
60
59
|
message: string;
|
|
61
60
|
};
|
|
62
61
|
readonly response_404: {
|
|
63
|
-
flow: FlowBase<TId, TDate> | null;
|
|
64
62
|
message: string;
|
|
65
|
-
error?: string;
|
|
66
63
|
};
|
|
67
64
|
readonly response_500: {
|
|
68
65
|
message: string;
|
|
@@ -78,7 +75,6 @@ export declare const flowFlowDefs: <TId, TDate>() => readonly [{
|
|
|
78
75
|
message: string;
|
|
79
76
|
};
|
|
80
77
|
readonly response_404: {
|
|
81
|
-
flow: FlowBase<TId, TDate> | null;
|
|
82
78
|
message: string;
|
|
83
79
|
};
|
|
84
80
|
readonly response_500: {
|
|
@@ -36,7 +36,6 @@ export declare const groupRoleDefs: <TId, TDate>() => readonly [{
|
|
|
36
36
|
};
|
|
37
37
|
readonly response_404: {
|
|
38
38
|
message: string;
|
|
39
|
-
error: string;
|
|
40
39
|
};
|
|
41
40
|
}, {
|
|
42
41
|
readonly method: "put";
|
|
@@ -48,9 +47,7 @@ export declare const groupRoleDefs: <TId, TDate>() => readonly [{
|
|
|
48
47
|
message: string;
|
|
49
48
|
};
|
|
50
49
|
readonly response_404: {
|
|
51
|
-
group?: GroupBase<TId, TDate> | null;
|
|
52
50
|
message: string;
|
|
53
|
-
error?: string;
|
|
54
51
|
};
|
|
55
52
|
readonly response_500: {
|
|
56
53
|
message: string;
|
|
@@ -66,7 +63,6 @@ export declare const groupRoleDefs: <TId, TDate>() => readonly [{
|
|
|
66
63
|
message: string;
|
|
67
64
|
};
|
|
68
65
|
readonly response_404: {
|
|
69
|
-
group?: GroupBase<TId, TDate> | null;
|
|
70
66
|
message: string;
|
|
71
67
|
};
|
|
72
68
|
readonly response_500: {
|
|
@@ -65,7 +65,6 @@ export declare const jobRoleDefs: <TId, TDate>() => readonly [{
|
|
|
65
65
|
};
|
|
66
66
|
readonly response_404: {
|
|
67
67
|
message: string;
|
|
68
|
-
error: string;
|
|
69
68
|
};
|
|
70
69
|
}, {
|
|
71
70
|
readonly method: "get";
|
|
@@ -84,9 +83,7 @@ export declare const jobRoleDefs: <TId, TDate>() => readonly [{
|
|
|
84
83
|
message: string;
|
|
85
84
|
};
|
|
86
85
|
readonly response_404: {
|
|
87
|
-
job?: JobBase<TId, TDate> | null;
|
|
88
86
|
message: string;
|
|
89
|
-
error: string;
|
|
90
87
|
};
|
|
91
88
|
}, {
|
|
92
89
|
readonly method: "put";
|
|
@@ -98,7 +95,6 @@ export declare const jobRoleDefs: <TId, TDate>() => readonly [{
|
|
|
98
95
|
message: string;
|
|
99
96
|
};
|
|
100
97
|
readonly response_404: {
|
|
101
|
-
job?: JobBase<TId, TDate> | null;
|
|
102
98
|
message: string;
|
|
103
99
|
};
|
|
104
100
|
readonly response_500: {
|
|
@@ -115,7 +111,6 @@ export declare const jobRoleDefs: <TId, TDate>() => readonly [{
|
|
|
115
111
|
message: string;
|
|
116
112
|
};
|
|
117
113
|
readonly response_404: {
|
|
118
|
-
job?: JobBase<TId, TDate> | null;
|
|
119
114
|
message: string;
|
|
120
115
|
};
|
|
121
116
|
readonly response_500: {
|
|
@@ -50,7 +50,6 @@ export declare const notificationRoleDefs: <TId, TDate>() => readonly [{
|
|
|
50
50
|
};
|
|
51
51
|
readonly response_404: {
|
|
52
52
|
message: string;
|
|
53
|
-
error: string;
|
|
54
53
|
};
|
|
55
54
|
}, {
|
|
56
55
|
readonly method: "put";
|
|
@@ -62,7 +61,6 @@ export declare const notificationRoleDefs: <TId, TDate>() => readonly [{
|
|
|
62
61
|
message: string;
|
|
63
62
|
};
|
|
64
63
|
readonly response_404: {
|
|
65
|
-
notification: NotificationBase<TId, TDate> | null;
|
|
66
64
|
message: string;
|
|
67
65
|
};
|
|
68
66
|
readonly response_500: {
|
|
@@ -79,7 +77,6 @@ export declare const notificationRoleDefs: <TId, TDate>() => readonly [{
|
|
|
79
77
|
message: string;
|
|
80
78
|
};
|
|
81
79
|
readonly response_404: {
|
|
82
|
-
notification: NotificationBase<TId, TDate> | null;
|
|
83
80
|
message: string;
|
|
84
81
|
};
|
|
85
82
|
readonly response_500: {
|
|
@@ -19,7 +19,6 @@ export declare const pageRoleDefs: <TId, TDate>() => readonly [{
|
|
|
19
19
|
readonly name: "Trigger page by ID";
|
|
20
20
|
readonly response_200: Record<string, never>;
|
|
21
21
|
readonly response_404: {
|
|
22
|
-
page: PageBase<TId, TDate> | null;
|
|
23
22
|
message: string;
|
|
24
23
|
};
|
|
25
24
|
readonly response_500: {
|
|
@@ -50,7 +49,6 @@ export declare const pageRoleDefs: <TId, TDate>() => readonly [{
|
|
|
50
49
|
};
|
|
51
50
|
readonly response_404: {
|
|
52
51
|
message: string;
|
|
53
|
-
error: string;
|
|
54
52
|
};
|
|
55
53
|
}, {
|
|
56
54
|
readonly method: "put";
|
|
@@ -62,7 +60,6 @@ export declare const pageRoleDefs: <TId, TDate>() => readonly [{
|
|
|
62
60
|
message: string;
|
|
63
61
|
};
|
|
64
62
|
readonly response_404: {
|
|
65
|
-
page: PageBase<TId, TDate> | null;
|
|
66
63
|
message: string;
|
|
67
64
|
};
|
|
68
65
|
readonly response_500: {
|
|
@@ -79,7 +76,6 @@ export declare const pageRoleDefs: <TId, TDate>() => readonly [{
|
|
|
79
76
|
message: string;
|
|
80
77
|
};
|
|
81
78
|
readonly response_404: {
|
|
82
|
-
page: PageBase<TId, TDate> | null;
|
|
83
79
|
message: string;
|
|
84
80
|
};
|
|
85
81
|
readonly response_500: {
|
|
@@ -36,7 +36,6 @@ export declare const productRoleDefs: <TId, TDate>() => readonly [{
|
|
|
36
36
|
};
|
|
37
37
|
readonly response_404: {
|
|
38
38
|
message: string;
|
|
39
|
-
error: string;
|
|
40
39
|
};
|
|
41
40
|
}, {
|
|
42
41
|
readonly method: "put";
|
|
@@ -48,7 +47,6 @@ export declare const productRoleDefs: <TId, TDate>() => readonly [{
|
|
|
48
47
|
message: string;
|
|
49
48
|
};
|
|
50
49
|
readonly response_404: {
|
|
51
|
-
product: ProductBase<TId, TDate> | null;
|
|
52
50
|
message: string;
|
|
53
51
|
};
|
|
54
52
|
readonly response_500: {
|
|
@@ -65,7 +63,6 @@ export declare const productRoleDefs: <TId, TDate>() => readonly [{
|
|
|
65
63
|
message: string;
|
|
66
64
|
};
|
|
67
65
|
readonly response_404: {
|
|
68
|
-
product: ProductBase<TId, TDate> | null;
|
|
69
66
|
message: string;
|
|
70
67
|
};
|
|
71
68
|
readonly response_500: {
|