@iblai/iblai-api 4.50.2-core → 4.51.0-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
CHANGED
|
@@ -110,7 +110,7 @@ class CancelablePromise {
|
|
|
110
110
|
|
|
111
111
|
const OpenAPI = {
|
|
112
112
|
BASE: 'https://base.manager.iblai.app',
|
|
113
|
-
VERSION: '4.
|
|
113
|
+
VERSION: '4.51.0-core',
|
|
114
114
|
WITH_CREDENTIALS: false,
|
|
115
115
|
CREDENTIALS: 'include',
|
|
116
116
|
TOKEN: undefined,
|
|
@@ -16445,7 +16445,7 @@ class CustomDomainsService {
|
|
|
16445
16445
|
});
|
|
16446
16446
|
}
|
|
16447
16447
|
/**
|
|
16448
|
-
* API endpoint to delete a custom domain
|
|
16448
|
+
* API endpoint to soft delete a custom domain
|
|
16449
16449
|
* @returns void
|
|
16450
16450
|
* @throws ApiError
|
|
16451
16451
|
*/
|
package/dist/index.esm.js
CHANGED
|
@@ -108,7 +108,7 @@ class CancelablePromise {
|
|
|
108
108
|
|
|
109
109
|
const OpenAPI = {
|
|
110
110
|
BASE: 'https://base.manager.iblai.app',
|
|
111
|
-
VERSION: '4.
|
|
111
|
+
VERSION: '4.51.0-core',
|
|
112
112
|
WITH_CREDENTIALS: false,
|
|
113
113
|
CREDENTIALS: 'include',
|
|
114
114
|
TOKEN: undefined,
|
|
@@ -16443,7 +16443,7 @@ class CustomDomainsService {
|
|
|
16443
16443
|
});
|
|
16444
16444
|
}
|
|
16445
16445
|
/**
|
|
16446
|
-
* API endpoint to delete a custom domain
|
|
16446
|
+
* API endpoint to soft delete a custom domain
|
|
16447
16447
|
* @returns void
|
|
16448
16448
|
* @throws ApiError
|
|
16449
16449
|
*/
|
package/dist/index.umd.js
CHANGED
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
|
|
115
115
|
const OpenAPI = {
|
|
116
116
|
BASE: 'https://base.manager.iblai.app',
|
|
117
|
-
VERSION: '4.
|
|
117
|
+
VERSION: '4.51.0-core',
|
|
118
118
|
WITH_CREDENTIALS: false,
|
|
119
119
|
CREDENTIALS: 'include',
|
|
120
120
|
TOKEN: undefined,
|
|
@@ -16449,7 +16449,7 @@
|
|
|
16449
16449
|
});
|
|
16450
16450
|
}
|
|
16451
16451
|
/**
|
|
16452
|
-
* API endpoint to delete a custom domain
|
|
16452
|
+
* API endpoint to soft delete a custom domain
|
|
16453
16453
|
* @returns void
|
|
16454
16454
|
* @throws ApiError
|
|
16455
16455
|
*/
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.51.0-core
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/analytics/content/:
|
|
@@ -19853,7 +19853,7 @@ paths:
|
|
|
19853
19853
|
/api/custom-domains/{domain_id}/delete/:
|
|
19854
19854
|
delete:
|
|
19855
19855
|
operationId: custom_domains_delete_destroy
|
|
19856
|
-
description: API endpoint to delete a custom domain
|
|
19856
|
+
description: API endpoint to soft delete a custom domain
|
|
19857
19857
|
parameters:
|
|
19858
19858
|
- in: path
|
|
19859
19859
|
name: domain_id
|
package/src/core/OpenAPI.ts
CHANGED