@iblai/iblai-api 2025.10.27-google-calendar-support-2-core → 2025.11.3-teams-bot-renovation-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.
@@ -15,6 +15,7 @@ import type { MentorPolicy } from '../models/MentorPolicy';
15
15
  import type { PaginatedRbacGroupList } from '../models/PaginatedRbacGroupList';
16
16
  import type { PaginatedRbacPolicyList } from '../models/PaginatedRbacPolicyList';
17
17
  import type { PaginatedRbacRoleList } from '../models/PaginatedRbacRoleList';
18
+ import type { PatchedPlatformPublicImageAsset } from '../models/PatchedPlatformPublicImageAsset';
18
19
  import type { PatchedPlatformPublicMetadata } from '../models/PatchedPlatformPublicMetadata';
19
20
  import type { PatchedRbacGroup } from '../models/PatchedRbacGroup';
20
21
  import type { PatchedRbacPolicy } from '../models/PatchedRbacPolicy';
@@ -27,6 +28,7 @@ import type { PlatformConfigurationSetResponse } from '../models/PlatformConfigu
27
28
  import type { PlatformList } from '../models/PlatformList';
28
29
  import type { PlatformMembershipConfig } from '../models/PlatformMembershipConfig';
29
30
  import type { PlatformMembershipConfigPostRequest } from '../models/PlatformMembershipConfigPostRequest';
31
+ import type { PlatformPublicImageAsset } from '../models/PlatformPublicImageAsset';
30
32
  import type { PlatformPublicMetadata } from '../models/PlatformPublicMetadata';
31
33
  import type { PlatformUpdatePostRequest } from '../models/PlatformUpdatePostRequest';
32
34
  import type { RbacGroup } from '../models/RbacGroup';
@@ -1249,6 +1251,159 @@ export class CoreService {
1249
1251
  mediaType: 'application/json',
1250
1252
  });
1251
1253
  }
1254
+ /**
1255
+ * Shared functionality for platform public image asset views.
1256
+ * @returns PlatformPublicImageAsset
1257
+ * @throws ApiError
1258
+ */
1259
+ public static corePlatformsPublicImageAssetsList({
1260
+ platformKey,
1261
+ }: {
1262
+ platformKey: string,
1263
+ }): CancelablePromise<Array<PlatformPublicImageAsset>> {
1264
+ return __request(OpenAPI, {
1265
+ method: 'GET',
1266
+ url: '/api/core/platforms/{platform_key}/public-image-assets/',
1267
+ path: {
1268
+ 'platform_key': platformKey,
1269
+ },
1270
+ });
1271
+ }
1272
+ /**
1273
+ * Shared functionality for platform public image asset views.
1274
+ * @returns PlatformPublicImageAsset
1275
+ * @throws ApiError
1276
+ */
1277
+ public static corePlatformsPublicImageAssetsCreate({
1278
+ platformKey,
1279
+ requestBody,
1280
+ }: {
1281
+ platformKey: string,
1282
+ requestBody: PlatformPublicImageAsset,
1283
+ }): CancelablePromise<PlatformPublicImageAsset> {
1284
+ return __request(OpenAPI, {
1285
+ method: 'POST',
1286
+ url: '/api/core/platforms/{platform_key}/public-image-assets/',
1287
+ path: {
1288
+ 'platform_key': platformKey,
1289
+ },
1290
+ body: requestBody,
1291
+ mediaType: 'application/json',
1292
+ });
1293
+ }
1294
+ /**
1295
+ * Shared functionality for platform public image asset views.
1296
+ * @returns PlatformPublicImageAsset
1297
+ * @throws ApiError
1298
+ */
1299
+ public static corePlatformsPublicImageAssetsRetrieve({
1300
+ assetId,
1301
+ platformKey,
1302
+ }: {
1303
+ assetId: number,
1304
+ platformKey: string,
1305
+ }): CancelablePromise<PlatformPublicImageAsset> {
1306
+ return __request(OpenAPI, {
1307
+ method: 'GET',
1308
+ url: '/api/core/platforms/{platform_key}/public-image-assets/{asset_id}/',
1309
+ path: {
1310
+ 'asset_id': assetId,
1311
+ 'platform_key': platformKey,
1312
+ },
1313
+ });
1314
+ }
1315
+ /**
1316
+ * Shared functionality for platform public image asset views.
1317
+ * @returns PlatformPublicImageAsset
1318
+ * @throws ApiError
1319
+ */
1320
+ public static corePlatformsPublicImageAssetsUpdate({
1321
+ assetId,
1322
+ platformKey,
1323
+ requestBody,
1324
+ }: {
1325
+ assetId: number,
1326
+ platformKey: string,
1327
+ requestBody: PlatformPublicImageAsset,
1328
+ }): CancelablePromise<PlatformPublicImageAsset> {
1329
+ return __request(OpenAPI, {
1330
+ method: 'PUT',
1331
+ url: '/api/core/platforms/{platform_key}/public-image-assets/{asset_id}/',
1332
+ path: {
1333
+ 'asset_id': assetId,
1334
+ 'platform_key': platformKey,
1335
+ },
1336
+ body: requestBody,
1337
+ mediaType: 'application/json',
1338
+ });
1339
+ }
1340
+ /**
1341
+ * Shared functionality for platform public image asset views.
1342
+ * @returns PlatformPublicImageAsset
1343
+ * @throws ApiError
1344
+ */
1345
+ public static corePlatformsPublicImageAssetsPartialUpdate({
1346
+ assetId,
1347
+ platformKey,
1348
+ requestBody,
1349
+ }: {
1350
+ assetId: number,
1351
+ platformKey: string,
1352
+ requestBody?: PatchedPlatformPublicImageAsset,
1353
+ }): CancelablePromise<PlatformPublicImageAsset> {
1354
+ return __request(OpenAPI, {
1355
+ method: 'PATCH',
1356
+ url: '/api/core/platforms/{platform_key}/public-image-assets/{asset_id}/',
1357
+ path: {
1358
+ 'asset_id': assetId,
1359
+ 'platform_key': platformKey,
1360
+ },
1361
+ body: requestBody,
1362
+ mediaType: 'application/json',
1363
+ });
1364
+ }
1365
+ /**
1366
+ * Shared functionality for platform public image asset views.
1367
+ * @returns void
1368
+ * @throws ApiError
1369
+ */
1370
+ public static corePlatformsPublicImageAssetsDestroy({
1371
+ assetId,
1372
+ platformKey,
1373
+ }: {
1374
+ assetId: number,
1375
+ platformKey: string,
1376
+ }): CancelablePromise<void> {
1377
+ return __request(OpenAPI, {
1378
+ method: 'DELETE',
1379
+ url: '/api/core/platforms/{platform_key}/public-image-assets/{asset_id}/',
1380
+ path: {
1381
+ 'asset_id': assetId,
1382
+ 'platform_key': platformKey,
1383
+ },
1384
+ });
1385
+ }
1386
+ /**
1387
+ * Shared functionality for platform public image asset views.
1388
+ * @returns any
1389
+ * @throws ApiError
1390
+ */
1391
+ public static corePlatformsPublicImageAssetsFileRetrieve({
1392
+ assetId,
1393
+ platformKey,
1394
+ }: {
1395
+ assetId: number,
1396
+ platformKey: string,
1397
+ }): CancelablePromise<Record<string, any>> {
1398
+ return __request(OpenAPI, {
1399
+ method: 'GET',
1400
+ url: '/api/core/platforms/{platform_key}/public-image-assets/{asset_id}/file/',
1401
+ path: {
1402
+ 'asset_id': assetId,
1403
+ 'platform_key': platformKey,
1404
+ },
1405
+ });
1406
+ }
1252
1407
  /**
1253
1408
  * List RBAC groups
1254
1409
  * Retrieve a list of RBAC groups. Can be filtered by platform_key.