@iblai/iblai-api 3.48.3-core → 3.48.4-core
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/index.cjs.js +3038 -2750
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3038 -2750
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +3038 -2750
- package/dist/index.umd.js.map +1 -1
- package/dist/types/services/AnalyticsService.d.ts +42 -13
- package/dist/types/services/AudienceService.d.ts +345 -149
- package/dist/types/services/CareerService.d.ts +117 -90
- package/dist/types/services/CatalogService.d.ts +3735 -1072
- package/dist/types/services/CoreService.d.ts +421 -210
- package/dist/types/services/CredentialsService.d.ts +173 -138
- package/dist/types/services/DepartmentsService.d.ts +53 -16
- package/dist/types/services/EngagementService.d.ts +459 -179
- package/dist/types/services/FeaturesService.d.ts +16 -7
- package/dist/types/services/FinanceService.d.ts +49 -20
- package/dist/types/services/MediaResourcesService.d.ts +243 -67
- package/dist/types/services/NotificationBuilderService.d.ts +31 -17
- package/dist/types/services/NotificationService.d.ts +56 -49
- package/dist/types/services/OrgsService.d.ts +106 -77
- package/dist/types/services/OverviewService.d.ts +154 -55
- package/dist/types/services/PerformanceService.d.ts +132 -56
- package/dist/types/services/PerlearnerService.d.ts +431 -217
- package/dist/types/services/PlatformService.d.ts +221 -116
- package/dist/types/services/ProviderAssociationService.d.ts +3 -2
- package/dist/types/services/ProvidersService.d.ts +27 -18
- package/dist/types/services/ProvisionService.d.ts +3 -2
- package/dist/types/services/RecommendationsService.d.ts +3 -3
- package/dist/types/services/ReportsService.d.ts +22 -16
- package/dist/types/services/RolesService.d.ts +8 -6
- package/dist/types/services/SearchService.d.ts +305 -80
- package/dist/types/services/ServiceService.d.ts +33 -29
- package/dist/types/services/SkillsService.d.ts +40 -32
- package/dist/types/services/UserGroupsService.d.ts +53 -16
- package/package.json +1 -1
- package/src/services/AnalyticsService.ts +45 -16
- package/src/services/AudienceService.ts +380 -184
- package/src/services/CareerService.ts +144 -117
- package/src/services/CatalogService.ts +3995 -1332
- package/src/services/CoreService.ts +503 -286
- package/src/services/CredentialsService.ts +253 -173
- package/src/services/DepartmentsService.ts +56 -19
- package/src/services/EngagementService.ts +528 -236
- package/src/services/FeaturesService.ts +19 -10
- package/src/services/FinanceService.ts +54 -25
- package/src/services/MediaResourcesService.ts +251 -75
- package/src/services/NotificationBuilderService.ts +36 -22
- package/src/services/NotificationService.ts +73 -61
- package/src/services/OrgsService.ts +135 -106
- package/src/services/OverviewService.ts +172 -73
- package/src/services/PerformanceService.ts +153 -77
- package/src/services/PerlearnerService.ts +591 -279
- package/src/services/PlatformService.ts +278 -157
- package/src/services/ProviderAssociationService.ts +4 -3
- package/src/services/ProvidersService.ts +36 -27
- package/src/services/ProvisionService.ts +4 -3
- package/src/services/RecommendationsService.ts +5 -4
- package/src/services/ReportsService.ts +28 -22
- package/src/services/RolesService.ts +10 -8
- package/src/services/SearchService.ts +323 -98
- package/src/services/ServiceService.ts +49 -39
- package/src/services/SkillsService.ts +56 -44
- package/src/services/UserGroupsService.ts +56 -19
|
@@ -7,204 +7,231 @@ import type { CancelablePromise } from '../core/CancelablePromise';
|
|
|
7
7
|
export declare class CareerService {
|
|
8
8
|
/**
|
|
9
9
|
* API endpoint for managing user base locations
|
|
10
|
-
* @param org
|
|
11
|
-
* @param username
|
|
12
10
|
* @returns any No response body
|
|
13
11
|
* @throws ApiError
|
|
14
12
|
*/
|
|
15
|
-
static careerLocationOrgsUsersRetrieve(org
|
|
13
|
+
static careerLocationOrgsUsersRetrieve({ org, username, }: {
|
|
14
|
+
org: string;
|
|
15
|
+
username: string;
|
|
16
|
+
}): CancelablePromise<any>;
|
|
16
17
|
/**
|
|
17
18
|
* API endpoint for managing user base locations
|
|
18
|
-
* @param org
|
|
19
|
-
* @param username
|
|
20
19
|
* @returns any No response body
|
|
21
20
|
* @throws ApiError
|
|
22
21
|
*/
|
|
23
|
-
static careerLocationOrgsUsersCreate(org
|
|
22
|
+
static careerLocationOrgsUsersCreate({ org, username, }: {
|
|
23
|
+
org: string;
|
|
24
|
+
username: string;
|
|
25
|
+
}): CancelablePromise<any>;
|
|
24
26
|
/**
|
|
25
27
|
* API endpoint for managing user base locations
|
|
26
|
-
* @param org
|
|
27
|
-
* @param username
|
|
28
28
|
* @returns any No response body
|
|
29
29
|
* @throws ApiError
|
|
30
30
|
*/
|
|
31
|
-
static careerLocationOrgsUsersUpdate(org
|
|
31
|
+
static careerLocationOrgsUsersUpdate({ org, username, }: {
|
|
32
|
+
org: string;
|
|
33
|
+
username: string;
|
|
34
|
+
}): CancelablePromise<any>;
|
|
32
35
|
/**
|
|
33
36
|
* Platform-wide location statistics (GET only)
|
|
34
|
-
* @param org
|
|
35
37
|
* @returns any No response body
|
|
36
38
|
* @throws ApiError
|
|
37
39
|
*/
|
|
38
|
-
static careerLocationsOrgsRetrieve(org
|
|
40
|
+
static careerLocationsOrgsRetrieve({ org, }: {
|
|
41
|
+
org: string;
|
|
42
|
+
}): CancelablePromise<any>;
|
|
39
43
|
/**
|
|
40
|
-
* @param org
|
|
41
|
-
* @param username
|
|
42
44
|
* @returns Company
|
|
43
45
|
* @throws ApiError
|
|
44
46
|
*/
|
|
45
|
-
static careerOrgsCompaniesUsersRetrieve(org
|
|
47
|
+
static careerOrgsCompaniesUsersRetrieve({ org, username, }: {
|
|
48
|
+
org: string;
|
|
49
|
+
username: string;
|
|
50
|
+
}): CancelablePromise<Company>;
|
|
46
51
|
/**
|
|
47
|
-
* @param org
|
|
48
|
-
* @param username
|
|
49
|
-
* @param requestBody
|
|
50
52
|
* @returns Company
|
|
51
53
|
* @throws ApiError
|
|
52
54
|
*/
|
|
53
|
-
static careerOrgsCompaniesUsersCreate(org
|
|
55
|
+
static careerOrgsCompaniesUsersCreate({ org, username, requestBody, }: {
|
|
56
|
+
org: string;
|
|
57
|
+
username: string;
|
|
58
|
+
requestBody: Company;
|
|
59
|
+
}): CancelablePromise<Company>;
|
|
54
60
|
/**
|
|
55
|
-
* @param org
|
|
56
|
-
* @param username
|
|
57
|
-
* @param requestBody
|
|
58
61
|
* @returns Company
|
|
59
62
|
* @throws ApiError
|
|
60
63
|
*/
|
|
61
|
-
static careerOrgsCompaniesUsersUpdate(org
|
|
64
|
+
static careerOrgsCompaniesUsersUpdate({ org, username, requestBody, }: {
|
|
65
|
+
org: string;
|
|
66
|
+
username: string;
|
|
67
|
+
requestBody: Company;
|
|
68
|
+
}): CancelablePromise<Company>;
|
|
62
69
|
/**
|
|
63
|
-
* @param org
|
|
64
|
-
* @param username
|
|
65
70
|
* @returns void
|
|
66
71
|
* @throws ApiError
|
|
67
72
|
*/
|
|
68
|
-
static careerOrgsCompaniesUsersDestroy(org
|
|
73
|
+
static careerOrgsCompaniesUsersDestroy({ org, username, }: {
|
|
74
|
+
org: string;
|
|
75
|
+
username: string;
|
|
76
|
+
}): CancelablePromise<void>;
|
|
69
77
|
/**
|
|
70
|
-
* @param org
|
|
71
|
-
* @param username
|
|
72
78
|
* @returns Education
|
|
73
79
|
* @throws ApiError
|
|
74
80
|
*/
|
|
75
|
-
static careerOrgsEducationUsersRetrieve(org
|
|
81
|
+
static careerOrgsEducationUsersRetrieve({ org, username, }: {
|
|
82
|
+
org: string;
|
|
83
|
+
username: string;
|
|
84
|
+
}): CancelablePromise<Education>;
|
|
76
85
|
/**
|
|
77
|
-
* @param org
|
|
78
|
-
* @param username
|
|
79
|
-
* @param requestBody
|
|
80
86
|
* @returns Education
|
|
81
87
|
* @throws ApiError
|
|
82
88
|
*/
|
|
83
|
-
static careerOrgsEducationUsersCreate(org
|
|
89
|
+
static careerOrgsEducationUsersCreate({ org, username, requestBody, }: {
|
|
90
|
+
org: string;
|
|
91
|
+
username: string;
|
|
92
|
+
requestBody: Education;
|
|
93
|
+
}): CancelablePromise<Education>;
|
|
84
94
|
/**
|
|
85
|
-
* @param org
|
|
86
|
-
* @param username
|
|
87
|
-
* @param requestBody
|
|
88
95
|
* @returns Education
|
|
89
96
|
* @throws ApiError
|
|
90
97
|
*/
|
|
91
|
-
static careerOrgsEducationUsersUpdate(org
|
|
98
|
+
static careerOrgsEducationUsersUpdate({ org, username, requestBody, }: {
|
|
99
|
+
org: string;
|
|
100
|
+
username: string;
|
|
101
|
+
requestBody: Education;
|
|
102
|
+
}): CancelablePromise<Education>;
|
|
92
103
|
/**
|
|
93
|
-
* @param org
|
|
94
|
-
* @param username
|
|
95
104
|
* @returns void
|
|
96
105
|
* @throws ApiError
|
|
97
106
|
*/
|
|
98
|
-
static careerOrgsEducationUsersDestroy(org
|
|
107
|
+
static careerOrgsEducationUsersDestroy({ org, username, }: {
|
|
108
|
+
org: string;
|
|
109
|
+
username: string;
|
|
110
|
+
}): CancelablePromise<void>;
|
|
99
111
|
/**
|
|
100
|
-
* @param org
|
|
101
|
-
* @param username
|
|
102
112
|
* @returns Experience
|
|
103
113
|
* @throws ApiError
|
|
104
114
|
*/
|
|
105
|
-
static careerOrgsExperienceUsersRetrieve(org
|
|
115
|
+
static careerOrgsExperienceUsersRetrieve({ org, username, }: {
|
|
116
|
+
org: string;
|
|
117
|
+
username: string;
|
|
118
|
+
}): CancelablePromise<Experience>;
|
|
106
119
|
/**
|
|
107
|
-
* @param org
|
|
108
|
-
* @param username
|
|
109
|
-
* @param requestBody
|
|
110
120
|
* @returns Experience
|
|
111
121
|
* @throws ApiError
|
|
112
122
|
*/
|
|
113
|
-
static careerOrgsExperienceUsersCreate(org
|
|
123
|
+
static careerOrgsExperienceUsersCreate({ org, username, requestBody, }: {
|
|
124
|
+
org: string;
|
|
125
|
+
username: string;
|
|
126
|
+
requestBody: Experience;
|
|
127
|
+
}): CancelablePromise<Experience>;
|
|
114
128
|
/**
|
|
115
|
-
* @param org
|
|
116
|
-
* @param username
|
|
117
|
-
* @param requestBody
|
|
118
129
|
* @returns Experience
|
|
119
130
|
* @throws ApiError
|
|
120
131
|
*/
|
|
121
|
-
static careerOrgsExperienceUsersUpdate(org
|
|
132
|
+
static careerOrgsExperienceUsersUpdate({ org, username, requestBody, }: {
|
|
133
|
+
org: string;
|
|
134
|
+
username: string;
|
|
135
|
+
requestBody: Experience;
|
|
136
|
+
}): CancelablePromise<Experience>;
|
|
122
137
|
/**
|
|
123
|
-
* @param org
|
|
124
|
-
* @param username
|
|
125
138
|
* @returns void
|
|
126
139
|
* @throws ApiError
|
|
127
140
|
*/
|
|
128
|
-
static careerOrgsExperienceUsersDestroy(org
|
|
141
|
+
static careerOrgsExperienceUsersDestroy({ org, username, }: {
|
|
142
|
+
org: string;
|
|
143
|
+
username: string;
|
|
144
|
+
}): CancelablePromise<void>;
|
|
129
145
|
/**
|
|
130
|
-
* @param org
|
|
131
|
-
* @param username
|
|
132
146
|
* @returns Institution
|
|
133
147
|
* @throws ApiError
|
|
134
148
|
*/
|
|
135
|
-
static careerOrgsInstitutionsUsersRetrieve(org
|
|
149
|
+
static careerOrgsInstitutionsUsersRetrieve({ org, username, }: {
|
|
150
|
+
org: string;
|
|
151
|
+
username: string;
|
|
152
|
+
}): CancelablePromise<Institution>;
|
|
136
153
|
/**
|
|
137
|
-
* @param org
|
|
138
|
-
* @param username
|
|
139
|
-
* @param requestBody
|
|
140
154
|
* @returns Institution
|
|
141
155
|
* @throws ApiError
|
|
142
156
|
*/
|
|
143
|
-
static careerOrgsInstitutionsUsersCreate(org
|
|
157
|
+
static careerOrgsInstitutionsUsersCreate({ org, username, requestBody, }: {
|
|
158
|
+
org: string;
|
|
159
|
+
username: string;
|
|
160
|
+
requestBody: Institution;
|
|
161
|
+
}): CancelablePromise<Institution>;
|
|
144
162
|
/**
|
|
145
|
-
* @param org
|
|
146
|
-
* @param username
|
|
147
|
-
* @param requestBody
|
|
148
163
|
* @returns Institution
|
|
149
164
|
* @throws ApiError
|
|
150
165
|
*/
|
|
151
|
-
static careerOrgsInstitutionsUsersUpdate(org
|
|
166
|
+
static careerOrgsInstitutionsUsersUpdate({ org, username, requestBody, }: {
|
|
167
|
+
org: string;
|
|
168
|
+
username: string;
|
|
169
|
+
requestBody: Institution;
|
|
170
|
+
}): CancelablePromise<Institution>;
|
|
152
171
|
/**
|
|
153
|
-
* @param org
|
|
154
|
-
* @param username
|
|
155
172
|
* @returns void
|
|
156
173
|
* @throws ApiError
|
|
157
174
|
*/
|
|
158
|
-
static careerOrgsInstitutionsUsersDestroy(org
|
|
175
|
+
static careerOrgsInstitutionsUsersDestroy({ org, username, }: {
|
|
176
|
+
org: string;
|
|
177
|
+
username: string;
|
|
178
|
+
}): CancelablePromise<void>;
|
|
159
179
|
/**
|
|
160
|
-
* @param org
|
|
161
|
-
* @param username
|
|
162
180
|
* @returns Program
|
|
163
181
|
* @throws ApiError
|
|
164
182
|
*/
|
|
165
|
-
static careerOrgsProgramsUsersRetrieve(org
|
|
183
|
+
static careerOrgsProgramsUsersRetrieve({ org, username, }: {
|
|
184
|
+
org: string;
|
|
185
|
+
username: string;
|
|
186
|
+
}): CancelablePromise<Program>;
|
|
166
187
|
/**
|
|
167
|
-
* @param org
|
|
168
|
-
* @param username
|
|
169
|
-
* @param requestBody
|
|
170
188
|
* @returns Program
|
|
171
189
|
* @throws ApiError
|
|
172
190
|
*/
|
|
173
|
-
static careerOrgsProgramsUsersCreate(org
|
|
191
|
+
static careerOrgsProgramsUsersCreate({ org, username, requestBody, }: {
|
|
192
|
+
org: string;
|
|
193
|
+
username: string;
|
|
194
|
+
requestBody: Program;
|
|
195
|
+
}): CancelablePromise<Program>;
|
|
174
196
|
/**
|
|
175
|
-
* @param org
|
|
176
|
-
* @param username
|
|
177
|
-
* @param requestBody
|
|
178
197
|
* @returns Program
|
|
179
198
|
* @throws ApiError
|
|
180
199
|
*/
|
|
181
|
-
static careerOrgsProgramsUsersUpdate(org
|
|
200
|
+
static careerOrgsProgramsUsersUpdate({ org, username, requestBody, }: {
|
|
201
|
+
org: string;
|
|
202
|
+
username: string;
|
|
203
|
+
requestBody: Program;
|
|
204
|
+
}): CancelablePromise<Program>;
|
|
182
205
|
/**
|
|
183
|
-
* @param org
|
|
184
|
-
* @param username
|
|
185
206
|
* @returns void
|
|
186
207
|
* @throws ApiError
|
|
187
208
|
*/
|
|
188
|
-
static careerOrgsProgramsUsersDestroy(org
|
|
209
|
+
static careerOrgsProgramsUsersDestroy({ org, username, }: {
|
|
210
|
+
org: string;
|
|
211
|
+
username: string;
|
|
212
|
+
}): CancelablePromise<void>;
|
|
189
213
|
/**
|
|
190
|
-
* @param org
|
|
191
|
-
* @param username
|
|
192
214
|
* @returns any No response body
|
|
193
215
|
* @throws ApiError
|
|
194
216
|
*/
|
|
195
|
-
static careerResumeOrgsUsersRetrieve(org
|
|
217
|
+
static careerResumeOrgsUsersRetrieve({ org, username, }: {
|
|
218
|
+
org: string;
|
|
219
|
+
username: string;
|
|
220
|
+
}): CancelablePromise<any>;
|
|
196
221
|
/**
|
|
197
|
-
* @param org
|
|
198
|
-
* @param username
|
|
199
222
|
* @returns any No response body
|
|
200
223
|
* @throws ApiError
|
|
201
224
|
*/
|
|
202
|
-
static careerResumeOrgsUsersCreate(org
|
|
225
|
+
static careerResumeOrgsUsersCreate({ org, username, }: {
|
|
226
|
+
org: string;
|
|
227
|
+
username: string;
|
|
228
|
+
}): CancelablePromise<any>;
|
|
203
229
|
/**
|
|
204
|
-
* @param org
|
|
205
|
-
* @param username
|
|
206
230
|
* @returns any No response body
|
|
207
231
|
* @throws ApiError
|
|
208
232
|
*/
|
|
209
|
-
static careerResumeOrgsUsersUpdate(org
|
|
233
|
+
static careerResumeOrgsUsersUpdate({ org, username, }: {
|
|
234
|
+
org: string;
|
|
235
|
+
username: string;
|
|
236
|
+
}): CancelablePromise<any>;
|
|
210
237
|
}
|