@iblai/iblai-api 4.92.0-ai → 4.92.1-ai

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.
@@ -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.92.0-ai-plus',
24
+ VERSION: '4.92.1-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
package/src/index.ts CHANGED
@@ -179,6 +179,7 @@ export type { CourseSuggestionCreate } from './models/CourseSuggestionCreate';
179
179
  export type { CourseSuggestionDetail } from './models/CourseSuggestionDetail';
180
180
  export { CrawlerPatternTypeEnum } from './models/CrawlerPatternTypeEnum';
181
181
  export type { Credential } from './models/Credential';
182
+ export type { CredentialProviderConfig } from './models/CredentialProviderConfig';
182
183
  export type { CredentialRequest } from './models/CredentialRequest';
183
184
  export type { CrontabSchedule } from './models/CrontabSchedule';
184
185
  export type { CurrentUsersResponse } from './models/CurrentUsersResponse';
@@ -224,6 +225,7 @@ export type { Entity } from './models/Entity';
224
225
  export { EntityTypeEnum } from './models/EntityTypeEnum';
225
226
  export type { ErrorResponse } from './models/ErrorResponse';
226
227
  export type { Experience } from './models/Experience';
228
+ export type { ExternalCredentialMapping } from './models/ExternalCredentialMapping';
227
229
  export type { ExternalServiceInfo } from './models/ExternalServiceInfo';
228
230
  export type { FileUploadURLRequest } from './models/FileUploadURLRequest';
229
231
  export type { FileUploadURLResponse } from './models/FileUploadURLResponse';
@@ -0,0 +1,34 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ /**
6
+ * Serializer for CredentialProviderConfig model.
7
+ *
8
+ * Serializes provider configuration including platform, provider name,
9
+ * config JSON, enabled status, and timestamps.
10
+ */
11
+ export type CredentialProviderConfig = {
12
+ readonly id: number;
13
+ readonly platform_key: string;
14
+ readonly platform_name: string;
15
+ /**
16
+ * The credential provider name (references CredentialProvider.name)
17
+ */
18
+ provider_name: string;
19
+ /**
20
+ * Get display name from provider if available, otherwise use provider_name.
21
+ */
22
+ readonly provider_name_display: string;
23
+ /**
24
+ * Provider-specific configuration in JSON format
25
+ */
26
+ config?: any;
27
+ /**
28
+ * Whether this provider integration is enabled for the platform
29
+ */
30
+ enabled?: boolean;
31
+ readonly created: string;
32
+ readonly updated: string;
33
+ };
34
+
@@ -0,0 +1,44 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ /**
6
+ * Serializer for ExternalCredentialMapping model.
7
+ *
8
+ * Serializes external credential mappings including credential, platform,
9
+ * provider, external_template_id, and metadata.
10
+ */
11
+ export type ExternalCredentialMapping = {
12
+ readonly id: number;
13
+ readonly credential_id: string;
14
+ readonly credential_name: string;
15
+ readonly platform_key: string;
16
+ readonly platform_name: string;
17
+ /**
18
+ * The credential provider
19
+ */
20
+ readonly provider: number | null;
21
+ /**
22
+ * The credential provider name (references CredentialProvider.name)
23
+ */
24
+ provider_name: string;
25
+ /**
26
+ * Get display name from provider if available, otherwise use provider_name.
27
+ */
28
+ readonly provider_name_display: string;
29
+ /**
30
+ * The template ID in the external system (e.g., Accredible template ID)
31
+ */
32
+ external_template_id?: string | null;
33
+ /**
34
+ * The group ID in the external system (e.g., Accredible group ID). If not set, will fall back to the provider config's group_id.
35
+ */
36
+ group_id?: string | null;
37
+ /**
38
+ * Additional metadata stored as JSON (for general mapping information, not sync status)
39
+ */
40
+ metadata?: any;
41
+ readonly created: string;
42
+ readonly updated: string;
43
+ };
44
+