@iblai/iblai-api 4.56.0-core → 4.57.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.56.0-core',
113
+ VERSION: '4.57.0-core',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
@@ -16436,7 +16436,7 @@ class CredentialsService {
16436
16436
 
16437
16437
  class CustomDomainsService {
16438
16438
  /**
16439
- * API endpoint to get custom domains
16439
+ * API endpoint to get custom domains (public, no authentication or permission checks)
16440
16440
  * @returns any No response body
16441
16441
  * @throws ApiError
16442
16442
  */
@@ -16447,7 +16447,7 @@ class CustomDomainsService {
16447
16447
  });
16448
16448
  }
16449
16449
  /**
16450
- * API endpoint to soft delete a custom domain
16450
+ * API endpoint to hard delete a custom domain
16451
16451
  * @returns void
16452
16452
  * @throws ApiError
16453
16453
  */
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.56.0-core',
111
+ VERSION: '4.57.0-core',
112
112
  WITH_CREDENTIALS: false,
113
113
  CREDENTIALS: 'include',
114
114
  TOKEN: undefined,
@@ -16434,7 +16434,7 @@ class CredentialsService {
16434
16434
 
16435
16435
  class CustomDomainsService {
16436
16436
  /**
16437
- * API endpoint to get custom domains
16437
+ * API endpoint to get custom domains (public, no authentication or permission checks)
16438
16438
  * @returns any No response body
16439
16439
  * @throws ApiError
16440
16440
  */
@@ -16445,7 +16445,7 @@ class CustomDomainsService {
16445
16445
  });
16446
16446
  }
16447
16447
  /**
16448
- * API endpoint to soft delete a custom domain
16448
+ * API endpoint to hard delete a custom domain
16449
16449
  * @returns void
16450
16450
  * @throws ApiError
16451
16451
  */
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.56.0-core',
117
+ VERSION: '4.57.0-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -16440,7 +16440,7 @@
16440
16440
 
16441
16441
  class CustomDomainsService {
16442
16442
  /**
16443
- * API endpoint to get custom domains
16443
+ * API endpoint to get custom domains (public, no authentication or permission checks)
16444
16444
  * @returns any No response body
16445
16445
  * @throws ApiError
16446
16446
  */
@@ -16451,7 +16451,7 @@
16451
16451
  });
16452
16452
  }
16453
16453
  /**
16454
- * API endpoint to soft delete a custom domain
16454
+ * API endpoint to hard delete a custom domain
16455
16455
  * @returns void
16456
16456
  * @throws ApiError
16457
16457
  */
@@ -1,13 +1,13 @@
1
1
  import type { CancelablePromise } from '../core/CancelablePromise';
2
2
  export declare class CustomDomainsService {
3
3
  /**
4
- * API endpoint to get custom domains
4
+ * API endpoint to get custom domains (public, no authentication or permission checks)
5
5
  * @returns any No response body
6
6
  * @throws ApiError
7
7
  */
8
8
  static customDomainsRetrieve(): CancelablePromise<any>;
9
9
  /**
10
- * API endpoint to soft delete a custom domain
10
+ * API endpoint to hard delete a custom domain
11
11
  * @returns void
12
12
  * @throws ApiError
13
13
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.56.0-core",
3
+ "version": "4.57.0-core",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
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.56.0-core
4
+ version: 4.57.0-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/analytics/content/:
@@ -19847,18 +19847,17 @@ paths:
19847
19847
  /api/custom-domains/:
19848
19848
  get:
19849
19849
  operationId: custom_domains_retrieve
19850
- description: API endpoint to get custom domains
19850
+ description: API endpoint to get custom domains (public, no authentication or
19851
+ permission checks)
19851
19852
  tags:
19852
19853
  - custom-domains
19853
- security:
19854
- - PlatformApiKeyAuthentication: []
19855
19854
  responses:
19856
19855
  '200':
19857
19856
  description: No response body
19858
19857
  /api/custom-domains/{domain_id}/delete/:
19859
19858
  delete:
19860
19859
  operationId: custom_domains_delete_destroy
19861
- description: API endpoint to soft delete a custom domain
19860
+ description: API endpoint to hard delete a custom domain
19862
19861
  parameters:
19863
19862
  - in: path
19864
19863
  name: domain_id
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: 'https://base.manager.iblai.app',
24
- VERSION: '4.56.0-core',
24
+ VERSION: '4.57.0-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -7,7 +7,7 @@ import { OpenAPI } from '../core/OpenAPI';
7
7
  import { request as __request } from '../core/request';
8
8
  export class CustomDomainsService {
9
9
  /**
10
- * API endpoint to get custom domains
10
+ * API endpoint to get custom domains (public, no authentication or permission checks)
11
11
  * @returns any No response body
12
12
  * @throws ApiError
13
13
  */
@@ -18,7 +18,7 @@ export class CustomDomainsService {
18
18
  });
19
19
  }
20
20
  /**
21
- * API endpoint to soft delete a custom domain
21
+ * API endpoint to hard delete a custom domain
22
22
  * @returns void
23
23
  * @throws ApiError
24
24
  */