@iblai/iblai-api 2025.11.14-teams-bot-renovation-3-core → 2025.11.18-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.
@@ -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.90.4-core',
24
+ VERSION: '4.92.1-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
package/src/index.ts CHANGED
@@ -118,6 +118,7 @@ export type { CourseSuggestionBulkCreate } from './models/CourseSuggestionBulkCr
118
118
  export type { CourseSuggestionCreate } from './models/CourseSuggestionCreate';
119
119
  export type { CourseSuggestionDetail } from './models/CourseSuggestionDetail';
120
120
  export type { Credential } from './models/Credential';
121
+ export type { CredentialProviderConfig } from './models/CredentialProviderConfig';
121
122
  export type { DesiredRole } from './models/DesiredRole';
122
123
  export type { DesiredRoleCreateUpdateRequest } from './models/DesiredRoleCreateUpdateRequest';
123
124
  export type { DesiredSkill } from './models/DesiredSkill';
@@ -136,6 +137,7 @@ export type { EnrollmentsPerUser } from './models/EnrollmentsPerUser';
136
137
  export type { EnrollmentsPerUserData } from './models/EnrollmentsPerUserData';
137
138
  export type { ErrorResponse } from './models/ErrorResponse';
138
139
  export type { Experience } from './models/Experience';
140
+ export type { ExternalCredentialMapping } from './models/ExternalCredentialMapping';
139
141
  export type { GCPTenantLaunchRequest } from './models/GCPTenantLaunchRequest';
140
142
  export type { GlobalCatalogSearchResponse } from './models/GlobalCatalogSearchResponse';
141
143
  export type { GooglePayAccountResponse } from './models/GooglePayAccountResponse';
@@ -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
+