@drttix/drt-sdk 1.1.8 → 1.1.9
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/cjs/src/generated/portal/core/OpenAPI.js +1 -1
- package/dist/cjs/src/generated/portal/models/SearchFeatureResponseDto.d.ts +0 -2
- package/dist/cjs/src/generated/portal/services/SuperUserAdvancedStudioSettingsService.d.ts +20 -12
- package/dist/cjs/src/generated/portal/services/SuperUserAdvancedStudioSettingsService.js +38 -22
- package/dist/esm/src/generated/portal/core/OpenAPI.js +1 -1
- package/dist/esm/src/generated/portal/models/SearchFeatureResponseDto.d.ts +0 -2
- package/dist/esm/src/generated/portal/services/SuperUserAdvancedStudioSettingsService.d.ts +20 -12
- package/dist/esm/src/generated/portal/services/SuperUserAdvancedStudioSettingsService.js +38 -22
- package/package.json +1 -1
- package/src/generated/portal/core/OpenAPI.ts +1 -1
- package/src/generated/portal/models/SearchFeatureResponseDto.ts +0 -2
- package/src/generated/portal/services/SuperUserAdvancedStudioSettingsService.ts +43 -25
|
@@ -2,12 +2,10 @@ export type SearchFeatureResponseDto = {
|
|
|
2
2
|
featureId: number;
|
|
3
3
|
featureName: string;
|
|
4
4
|
description: string;
|
|
5
|
-
numMatches: number;
|
|
6
5
|
triggerJs: string;
|
|
7
6
|
toolName: string;
|
|
8
7
|
toolPath: Record<string, any>;
|
|
9
8
|
hasIcons: number;
|
|
10
9
|
iconColor: string;
|
|
11
10
|
iconSrc: string;
|
|
12
|
-
rank: string;
|
|
13
11
|
};
|
|
@@ -13,15 +13,32 @@ export declare class SuperUserAdvancedStudioSettingsService {
|
|
|
13
13
|
* @throws ApiError
|
|
14
14
|
*/
|
|
15
15
|
static getAdvancedSetting(xStudioId: string): CancelablePromise<AdvancedStudioSettingsResponseDto>;
|
|
16
|
+
/**
|
|
17
|
+
* Create the advanced wave by id
|
|
18
|
+
* Create the advanced wave by id
|
|
19
|
+
* @param xStudioId The ID of the studio
|
|
20
|
+
* @param requestBody
|
|
21
|
+
* @returns SuccessResponse Advanced studio wave created successfully
|
|
22
|
+
* @throws ApiError
|
|
23
|
+
*/
|
|
24
|
+
static createAdvancedWave(xStudioId: string, requestBody: CreateUpdatePriorityWaveRequestDto): CancelablePromise<SuccessResponse>;
|
|
16
25
|
/**
|
|
17
26
|
* Update the advanced studio settings
|
|
18
27
|
* Update the advanced studio settings for a studio
|
|
19
28
|
* @param xStudioId The ID of the studio
|
|
20
29
|
* @param requestBody Payload to update advanced studio settings
|
|
21
|
-
* @returns SuccessResponse Advanced studio settings updated
|
|
30
|
+
* @returns SuccessResponse Advanced studio settings updated successfully
|
|
22
31
|
* @throws ApiError
|
|
23
32
|
*/
|
|
24
33
|
static updateAdvancedStudioSettings(xStudioId: string, requestBody: UpdateAdvancedStudioSettingsRequestDto): CancelablePromise<SuccessResponse>;
|
|
34
|
+
/**
|
|
35
|
+
* Delete all advanced waves
|
|
36
|
+
* Delete all advanced waves for a studio
|
|
37
|
+
* @param xStudioId The ID of the studio
|
|
38
|
+
* @returns SuccessResponse All advanced studio waves deleted successfully
|
|
39
|
+
* @throws ApiError
|
|
40
|
+
*/
|
|
41
|
+
static deleteAllAdvancedWaves(xStudioId: string): CancelablePromise<SuccessResponse>;
|
|
25
42
|
/**
|
|
26
43
|
* Fetch the advanced waves of the studio
|
|
27
44
|
* Fetch the advanced waves for a studio
|
|
@@ -39,22 +56,13 @@ export declare class SuperUserAdvancedStudioSettingsService {
|
|
|
39
56
|
* @throws ApiError
|
|
40
57
|
*/
|
|
41
58
|
static getAdvancedWave(xStudioId: string, priorityWaveId: string): CancelablePromise<AdvancedStudioWaveResponseDto>;
|
|
42
|
-
/**
|
|
43
|
-
* Create the advanced wave by id
|
|
44
|
-
* Create the advanced wave by id
|
|
45
|
-
* @param xStudioId The ID of the studio
|
|
46
|
-
* @param requestBody
|
|
47
|
-
* @returns SuccessResponse Advanced studio settings wave created successful
|
|
48
|
-
* @throws ApiError
|
|
49
|
-
*/
|
|
50
|
-
static createAdvancedWave(xStudioId: string, requestBody: CreateUpdatePriorityWaveRequestDto): CancelablePromise<SuccessResponse>;
|
|
51
59
|
/**
|
|
52
60
|
* Update the advanced wave by id
|
|
53
61
|
* Update the advanced wave by id
|
|
54
62
|
* @param xStudioId The ID of the studio
|
|
55
63
|
* @param priorityWaveId The ID of the priority wave
|
|
56
64
|
* @param requestBody
|
|
57
|
-
* @returns SuccessResponse Advanced studio
|
|
65
|
+
* @returns SuccessResponse Advanced studio wave updated successfully
|
|
58
66
|
* @throws ApiError
|
|
59
67
|
*/
|
|
60
68
|
static updateAdvancedWave(xStudioId: string, priorityWaveId: string, requestBody: CreateUpdatePriorityWaveRequestDto): CancelablePromise<SuccessResponse>;
|
|
@@ -63,7 +71,7 @@ export declare class SuperUserAdvancedStudioSettingsService {
|
|
|
63
71
|
* Delete the advanced wave by id
|
|
64
72
|
* @param xStudioId The ID of the studio
|
|
65
73
|
* @param priorityWaveId The ID of the priority wave
|
|
66
|
-
* @returns SuccessResponse Advanced studio
|
|
74
|
+
* @returns SuccessResponse Advanced studio wave deleted successfully
|
|
67
75
|
* @throws ApiError
|
|
68
76
|
*/
|
|
69
77
|
static deleteAdvancedWave(xStudioId: string, priorityWaveId: string): CancelablePromise<SuccessResponse>;
|
|
@@ -20,12 +20,31 @@ class SuperUserAdvancedStudioSettingsService {
|
|
|
20
20
|
},
|
|
21
21
|
});
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Create the advanced wave by id
|
|
25
|
+
* Create the advanced wave by id
|
|
26
|
+
* @param xStudioId The ID of the studio
|
|
27
|
+
* @param requestBody
|
|
28
|
+
* @returns SuccessResponse Advanced studio wave created successfully
|
|
29
|
+
* @throws ApiError
|
|
30
|
+
*/
|
|
31
|
+
static createAdvancedWave(xStudioId, requestBody) {
|
|
32
|
+
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
33
|
+
method: 'POST',
|
|
34
|
+
url: '/superuser/advanced-studio-settings',
|
|
35
|
+
headers: {
|
|
36
|
+
'x-studio-id': xStudioId,
|
|
37
|
+
},
|
|
38
|
+
body: requestBody,
|
|
39
|
+
mediaType: 'application/json',
|
|
40
|
+
});
|
|
41
|
+
}
|
|
23
42
|
/**
|
|
24
43
|
* Update the advanced studio settings
|
|
25
44
|
* Update the advanced studio settings for a studio
|
|
26
45
|
* @param xStudioId The ID of the studio
|
|
27
46
|
* @param requestBody Payload to update advanced studio settings
|
|
28
|
-
* @returns SuccessResponse Advanced studio settings updated
|
|
47
|
+
* @returns SuccessResponse Advanced studio settings updated successfully
|
|
29
48
|
* @throws ApiError
|
|
30
49
|
*/
|
|
31
50
|
static updateAdvancedStudioSettings(xStudioId, requestBody) {
|
|
@@ -39,6 +58,22 @@ class SuperUserAdvancedStudioSettingsService {
|
|
|
39
58
|
mediaType: 'application/json',
|
|
40
59
|
});
|
|
41
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* Delete all advanced waves
|
|
63
|
+
* Delete all advanced waves for a studio
|
|
64
|
+
* @param xStudioId The ID of the studio
|
|
65
|
+
* @returns SuccessResponse All advanced studio waves deleted successfully
|
|
66
|
+
* @throws ApiError
|
|
67
|
+
*/
|
|
68
|
+
static deleteAllAdvancedWaves(xStudioId) {
|
|
69
|
+
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
70
|
+
method: 'DELETE',
|
|
71
|
+
url: '/superuser/advanced-studio-settings',
|
|
72
|
+
headers: {
|
|
73
|
+
'x-studio-id': xStudioId,
|
|
74
|
+
},
|
|
75
|
+
});
|
|
76
|
+
}
|
|
42
77
|
/**
|
|
43
78
|
* Fetch the advanced waves of the studio
|
|
44
79
|
* Fetch the advanced waves for a studio
|
|
@@ -75,32 +110,13 @@ class SuperUserAdvancedStudioSettingsService {
|
|
|
75
110
|
},
|
|
76
111
|
});
|
|
77
112
|
}
|
|
78
|
-
/**
|
|
79
|
-
* Create the advanced wave by id
|
|
80
|
-
* Create the advanced wave by id
|
|
81
|
-
* @param xStudioId The ID of the studio
|
|
82
|
-
* @param requestBody
|
|
83
|
-
* @returns SuccessResponse Advanced studio settings wave created successful
|
|
84
|
-
* @throws ApiError
|
|
85
|
-
*/
|
|
86
|
-
static createAdvancedWave(xStudioId, requestBody) {
|
|
87
|
-
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
88
|
-
method: 'POST',
|
|
89
|
-
url: '/superuser/advanced-studio-settings/{priorityWaveId}',
|
|
90
|
-
headers: {
|
|
91
|
-
'x-studio-id': xStudioId,
|
|
92
|
-
},
|
|
93
|
-
body: requestBody,
|
|
94
|
-
mediaType: 'application/json',
|
|
95
|
-
});
|
|
96
|
-
}
|
|
97
113
|
/**
|
|
98
114
|
* Update the advanced wave by id
|
|
99
115
|
* Update the advanced wave by id
|
|
100
116
|
* @param xStudioId The ID of the studio
|
|
101
117
|
* @param priorityWaveId The ID of the priority wave
|
|
102
118
|
* @param requestBody
|
|
103
|
-
* @returns SuccessResponse Advanced studio
|
|
119
|
+
* @returns SuccessResponse Advanced studio wave updated successfully
|
|
104
120
|
* @throws ApiError
|
|
105
121
|
*/
|
|
106
122
|
static updateAdvancedWave(xStudioId, priorityWaveId, requestBody) {
|
|
@@ -122,7 +138,7 @@ class SuperUserAdvancedStudioSettingsService {
|
|
|
122
138
|
* Delete the advanced wave by id
|
|
123
139
|
* @param xStudioId The ID of the studio
|
|
124
140
|
* @param priorityWaveId The ID of the priority wave
|
|
125
|
-
* @returns SuccessResponse Advanced studio
|
|
141
|
+
* @returns SuccessResponse Advanced studio wave deleted successfully
|
|
126
142
|
* @throws ApiError
|
|
127
143
|
*/
|
|
128
144
|
static deleteAdvancedWave(xStudioId, priorityWaveId) {
|
|
@@ -2,12 +2,10 @@ export type SearchFeatureResponseDto = {
|
|
|
2
2
|
featureId: number;
|
|
3
3
|
featureName: string;
|
|
4
4
|
description: string;
|
|
5
|
-
numMatches: number;
|
|
6
5
|
triggerJs: string;
|
|
7
6
|
toolName: string;
|
|
8
7
|
toolPath: Record<string, any>;
|
|
9
8
|
hasIcons: number;
|
|
10
9
|
iconColor: string;
|
|
11
10
|
iconSrc: string;
|
|
12
|
-
rank: string;
|
|
13
11
|
};
|
|
@@ -13,15 +13,32 @@ export declare class SuperUserAdvancedStudioSettingsService {
|
|
|
13
13
|
* @throws ApiError
|
|
14
14
|
*/
|
|
15
15
|
static getAdvancedSetting(xStudioId: string): CancelablePromise<AdvancedStudioSettingsResponseDto>;
|
|
16
|
+
/**
|
|
17
|
+
* Create the advanced wave by id
|
|
18
|
+
* Create the advanced wave by id
|
|
19
|
+
* @param xStudioId The ID of the studio
|
|
20
|
+
* @param requestBody
|
|
21
|
+
* @returns SuccessResponse Advanced studio wave created successfully
|
|
22
|
+
* @throws ApiError
|
|
23
|
+
*/
|
|
24
|
+
static createAdvancedWave(xStudioId: string, requestBody: CreateUpdatePriorityWaveRequestDto): CancelablePromise<SuccessResponse>;
|
|
16
25
|
/**
|
|
17
26
|
* Update the advanced studio settings
|
|
18
27
|
* Update the advanced studio settings for a studio
|
|
19
28
|
* @param xStudioId The ID of the studio
|
|
20
29
|
* @param requestBody Payload to update advanced studio settings
|
|
21
|
-
* @returns SuccessResponse Advanced studio settings updated
|
|
30
|
+
* @returns SuccessResponse Advanced studio settings updated successfully
|
|
22
31
|
* @throws ApiError
|
|
23
32
|
*/
|
|
24
33
|
static updateAdvancedStudioSettings(xStudioId: string, requestBody: UpdateAdvancedStudioSettingsRequestDto): CancelablePromise<SuccessResponse>;
|
|
34
|
+
/**
|
|
35
|
+
* Delete all advanced waves
|
|
36
|
+
* Delete all advanced waves for a studio
|
|
37
|
+
* @param xStudioId The ID of the studio
|
|
38
|
+
* @returns SuccessResponse All advanced studio waves deleted successfully
|
|
39
|
+
* @throws ApiError
|
|
40
|
+
*/
|
|
41
|
+
static deleteAllAdvancedWaves(xStudioId: string): CancelablePromise<SuccessResponse>;
|
|
25
42
|
/**
|
|
26
43
|
* Fetch the advanced waves of the studio
|
|
27
44
|
* Fetch the advanced waves for a studio
|
|
@@ -39,22 +56,13 @@ export declare class SuperUserAdvancedStudioSettingsService {
|
|
|
39
56
|
* @throws ApiError
|
|
40
57
|
*/
|
|
41
58
|
static getAdvancedWave(xStudioId: string, priorityWaveId: string): CancelablePromise<AdvancedStudioWaveResponseDto>;
|
|
42
|
-
/**
|
|
43
|
-
* Create the advanced wave by id
|
|
44
|
-
* Create the advanced wave by id
|
|
45
|
-
* @param xStudioId The ID of the studio
|
|
46
|
-
* @param requestBody
|
|
47
|
-
* @returns SuccessResponse Advanced studio settings wave created successful
|
|
48
|
-
* @throws ApiError
|
|
49
|
-
*/
|
|
50
|
-
static createAdvancedWave(xStudioId: string, requestBody: CreateUpdatePriorityWaveRequestDto): CancelablePromise<SuccessResponse>;
|
|
51
59
|
/**
|
|
52
60
|
* Update the advanced wave by id
|
|
53
61
|
* Update the advanced wave by id
|
|
54
62
|
* @param xStudioId The ID of the studio
|
|
55
63
|
* @param priorityWaveId The ID of the priority wave
|
|
56
64
|
* @param requestBody
|
|
57
|
-
* @returns SuccessResponse Advanced studio
|
|
65
|
+
* @returns SuccessResponse Advanced studio wave updated successfully
|
|
58
66
|
* @throws ApiError
|
|
59
67
|
*/
|
|
60
68
|
static updateAdvancedWave(xStudioId: string, priorityWaveId: string, requestBody: CreateUpdatePriorityWaveRequestDto): CancelablePromise<SuccessResponse>;
|
|
@@ -63,7 +71,7 @@ export declare class SuperUserAdvancedStudioSettingsService {
|
|
|
63
71
|
* Delete the advanced wave by id
|
|
64
72
|
* @param xStudioId The ID of the studio
|
|
65
73
|
* @param priorityWaveId The ID of the priority wave
|
|
66
|
-
* @returns SuccessResponse Advanced studio
|
|
74
|
+
* @returns SuccessResponse Advanced studio wave deleted successfully
|
|
67
75
|
* @throws ApiError
|
|
68
76
|
*/
|
|
69
77
|
static deleteAdvancedWave(xStudioId: string, priorityWaveId: string): CancelablePromise<SuccessResponse>;
|
|
@@ -17,12 +17,31 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
17
17
|
},
|
|
18
18
|
});
|
|
19
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* Create the advanced wave by id
|
|
22
|
+
* Create the advanced wave by id
|
|
23
|
+
* @param xStudioId The ID of the studio
|
|
24
|
+
* @param requestBody
|
|
25
|
+
* @returns SuccessResponse Advanced studio wave created successfully
|
|
26
|
+
* @throws ApiError
|
|
27
|
+
*/
|
|
28
|
+
static createAdvancedWave(xStudioId, requestBody) {
|
|
29
|
+
return __request(OpenAPI, {
|
|
30
|
+
method: 'POST',
|
|
31
|
+
url: '/superuser/advanced-studio-settings',
|
|
32
|
+
headers: {
|
|
33
|
+
'x-studio-id': xStudioId,
|
|
34
|
+
},
|
|
35
|
+
body: requestBody,
|
|
36
|
+
mediaType: 'application/json',
|
|
37
|
+
});
|
|
38
|
+
}
|
|
20
39
|
/**
|
|
21
40
|
* Update the advanced studio settings
|
|
22
41
|
* Update the advanced studio settings for a studio
|
|
23
42
|
* @param xStudioId The ID of the studio
|
|
24
43
|
* @param requestBody Payload to update advanced studio settings
|
|
25
|
-
* @returns SuccessResponse Advanced studio settings updated
|
|
44
|
+
* @returns SuccessResponse Advanced studio settings updated successfully
|
|
26
45
|
* @throws ApiError
|
|
27
46
|
*/
|
|
28
47
|
static updateAdvancedStudioSettings(xStudioId, requestBody) {
|
|
@@ -36,6 +55,22 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
36
55
|
mediaType: 'application/json',
|
|
37
56
|
});
|
|
38
57
|
}
|
|
58
|
+
/**
|
|
59
|
+
* Delete all advanced waves
|
|
60
|
+
* Delete all advanced waves for a studio
|
|
61
|
+
* @param xStudioId The ID of the studio
|
|
62
|
+
* @returns SuccessResponse All advanced studio waves deleted successfully
|
|
63
|
+
* @throws ApiError
|
|
64
|
+
*/
|
|
65
|
+
static deleteAllAdvancedWaves(xStudioId) {
|
|
66
|
+
return __request(OpenAPI, {
|
|
67
|
+
method: 'DELETE',
|
|
68
|
+
url: '/superuser/advanced-studio-settings',
|
|
69
|
+
headers: {
|
|
70
|
+
'x-studio-id': xStudioId,
|
|
71
|
+
},
|
|
72
|
+
});
|
|
73
|
+
}
|
|
39
74
|
/**
|
|
40
75
|
* Fetch the advanced waves of the studio
|
|
41
76
|
* Fetch the advanced waves for a studio
|
|
@@ -72,32 +107,13 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
72
107
|
},
|
|
73
108
|
});
|
|
74
109
|
}
|
|
75
|
-
/**
|
|
76
|
-
* Create the advanced wave by id
|
|
77
|
-
* Create the advanced wave by id
|
|
78
|
-
* @param xStudioId The ID of the studio
|
|
79
|
-
* @param requestBody
|
|
80
|
-
* @returns SuccessResponse Advanced studio settings wave created successful
|
|
81
|
-
* @throws ApiError
|
|
82
|
-
*/
|
|
83
|
-
static createAdvancedWave(xStudioId, requestBody) {
|
|
84
|
-
return __request(OpenAPI, {
|
|
85
|
-
method: 'POST',
|
|
86
|
-
url: '/superuser/advanced-studio-settings/{priorityWaveId}',
|
|
87
|
-
headers: {
|
|
88
|
-
'x-studio-id': xStudioId,
|
|
89
|
-
},
|
|
90
|
-
body: requestBody,
|
|
91
|
-
mediaType: 'application/json',
|
|
92
|
-
});
|
|
93
|
-
}
|
|
94
110
|
/**
|
|
95
111
|
* Update the advanced wave by id
|
|
96
112
|
* Update the advanced wave by id
|
|
97
113
|
* @param xStudioId The ID of the studio
|
|
98
114
|
* @param priorityWaveId The ID of the priority wave
|
|
99
115
|
* @param requestBody
|
|
100
|
-
* @returns SuccessResponse Advanced studio
|
|
116
|
+
* @returns SuccessResponse Advanced studio wave updated successfully
|
|
101
117
|
* @throws ApiError
|
|
102
118
|
*/
|
|
103
119
|
static updateAdvancedWave(xStudioId, priorityWaveId, requestBody) {
|
|
@@ -119,7 +135,7 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
119
135
|
* Delete the advanced wave by id
|
|
120
136
|
* @param xStudioId The ID of the studio
|
|
121
137
|
* @param priorityWaveId The ID of the priority wave
|
|
122
|
-
* @returns SuccessResponse Advanced studio
|
|
138
|
+
* @returns SuccessResponse Advanced studio wave deleted successfully
|
|
123
139
|
* @throws ApiError
|
|
124
140
|
*/
|
|
125
141
|
static deleteAdvancedWave(xStudioId, priorityWaveId) {
|
package/package.json
CHANGED
|
@@ -6,13 +6,11 @@ export type SearchFeatureResponseDto = {
|
|
|
6
6
|
featureId: number;
|
|
7
7
|
featureName: string;
|
|
8
8
|
description: string;
|
|
9
|
-
numMatches: number;
|
|
10
9
|
triggerJs: string;
|
|
11
10
|
toolName: string;
|
|
12
11
|
toolPath: Record<string, any>;
|
|
13
12
|
hasIcons: number;
|
|
14
13
|
iconColor: string;
|
|
15
14
|
iconSrc: string;
|
|
16
|
-
rank: string;
|
|
17
15
|
};
|
|
18
16
|
|
|
@@ -29,12 +29,34 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
29
29
|
},
|
|
30
30
|
});
|
|
31
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* Create the advanced wave by id
|
|
34
|
+
* Create the advanced wave by id
|
|
35
|
+
* @param xStudioId The ID of the studio
|
|
36
|
+
* @param requestBody
|
|
37
|
+
* @returns SuccessResponse Advanced studio wave created successfully
|
|
38
|
+
* @throws ApiError
|
|
39
|
+
*/
|
|
40
|
+
public static createAdvancedWave(
|
|
41
|
+
xStudioId: string,
|
|
42
|
+
requestBody: CreateUpdatePriorityWaveRequestDto,
|
|
43
|
+
): CancelablePromise<SuccessResponse> {
|
|
44
|
+
return __request(OpenAPI, {
|
|
45
|
+
method: 'POST',
|
|
46
|
+
url: '/superuser/advanced-studio-settings',
|
|
47
|
+
headers: {
|
|
48
|
+
'x-studio-id': xStudioId,
|
|
49
|
+
},
|
|
50
|
+
body: requestBody,
|
|
51
|
+
mediaType: 'application/json',
|
|
52
|
+
});
|
|
53
|
+
}
|
|
32
54
|
/**
|
|
33
55
|
* Update the advanced studio settings
|
|
34
56
|
* Update the advanced studio settings for a studio
|
|
35
57
|
* @param xStudioId The ID of the studio
|
|
36
58
|
* @param requestBody Payload to update advanced studio settings
|
|
37
|
-
* @returns SuccessResponse Advanced studio settings updated
|
|
59
|
+
* @returns SuccessResponse Advanced studio settings updated successfully
|
|
38
60
|
* @throws ApiError
|
|
39
61
|
*/
|
|
40
62
|
public static updateAdvancedStudioSettings(
|
|
@@ -51,6 +73,24 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
51
73
|
mediaType: 'application/json',
|
|
52
74
|
});
|
|
53
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* Delete all advanced waves
|
|
78
|
+
* Delete all advanced waves for a studio
|
|
79
|
+
* @param xStudioId The ID of the studio
|
|
80
|
+
* @returns SuccessResponse All advanced studio waves deleted successfully
|
|
81
|
+
* @throws ApiError
|
|
82
|
+
*/
|
|
83
|
+
public static deleteAllAdvancedWaves(
|
|
84
|
+
xStudioId: string,
|
|
85
|
+
): CancelablePromise<SuccessResponse> {
|
|
86
|
+
return __request(OpenAPI, {
|
|
87
|
+
method: 'DELETE',
|
|
88
|
+
url: '/superuser/advanced-studio-settings',
|
|
89
|
+
headers: {
|
|
90
|
+
'x-studio-id': xStudioId,
|
|
91
|
+
},
|
|
92
|
+
});
|
|
93
|
+
}
|
|
54
94
|
/**
|
|
55
95
|
* Fetch the advanced waves of the studio
|
|
56
96
|
* Fetch the advanced waves for a studio
|
|
@@ -92,35 +132,13 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
92
132
|
},
|
|
93
133
|
});
|
|
94
134
|
}
|
|
95
|
-
/**
|
|
96
|
-
* Create the advanced wave by id
|
|
97
|
-
* Create the advanced wave by id
|
|
98
|
-
* @param xStudioId The ID of the studio
|
|
99
|
-
* @param requestBody
|
|
100
|
-
* @returns SuccessResponse Advanced studio settings wave created successful
|
|
101
|
-
* @throws ApiError
|
|
102
|
-
*/
|
|
103
|
-
public static createAdvancedWave(
|
|
104
|
-
xStudioId: string,
|
|
105
|
-
requestBody: CreateUpdatePriorityWaveRequestDto,
|
|
106
|
-
): CancelablePromise<SuccessResponse> {
|
|
107
|
-
return __request(OpenAPI, {
|
|
108
|
-
method: 'POST',
|
|
109
|
-
url: '/superuser/advanced-studio-settings/{priorityWaveId}',
|
|
110
|
-
headers: {
|
|
111
|
-
'x-studio-id': xStudioId,
|
|
112
|
-
},
|
|
113
|
-
body: requestBody,
|
|
114
|
-
mediaType: 'application/json',
|
|
115
|
-
});
|
|
116
|
-
}
|
|
117
135
|
/**
|
|
118
136
|
* Update the advanced wave by id
|
|
119
137
|
* Update the advanced wave by id
|
|
120
138
|
* @param xStudioId The ID of the studio
|
|
121
139
|
* @param priorityWaveId The ID of the priority wave
|
|
122
140
|
* @param requestBody
|
|
123
|
-
* @returns SuccessResponse Advanced studio
|
|
141
|
+
* @returns SuccessResponse Advanced studio wave updated successfully
|
|
124
142
|
* @throws ApiError
|
|
125
143
|
*/
|
|
126
144
|
public static updateAdvancedWave(
|
|
@@ -146,7 +164,7 @@ export class SuperUserAdvancedStudioSettingsService {
|
|
|
146
164
|
* Delete the advanced wave by id
|
|
147
165
|
* @param xStudioId The ID of the studio
|
|
148
166
|
* @param priorityWaveId The ID of the priority wave
|
|
149
|
-
* @returns SuccessResponse Advanced studio
|
|
167
|
+
* @returns SuccessResponse Advanced studio wave deleted successfully
|
|
150
168
|
* @throws ApiError
|
|
151
169
|
*/
|
|
152
170
|
public static deleteAdvancedWave(
|