@iblai/iblai-api 3.39.3-core → 3.39.4-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: '3.
|
|
113
|
+
VERSION: '3.40.0-core',
|
|
114
114
|
WITH_CREDENTIALS: false,
|
|
115
115
|
CREDENTIALS: 'include',
|
|
116
116
|
TOKEN: undefined,
|
|
@@ -10529,7 +10529,7 @@ class CredentialsService {
|
|
|
10529
10529
|
* * `json` - json
|
|
10530
10530
|
* @param includeMainPlatform Include main platform data
|
|
10531
10531
|
* @param startDate start date. ISO 8601
|
|
10532
|
-
* @returns
|
|
10532
|
+
* @returns OvertimeWithChangeInfo
|
|
10533
10533
|
* @throws ApiError
|
|
10534
10534
|
*/
|
|
10535
10535
|
static credentialsOrgsUsersAssertionsOverTimeRetrieve(org, userId, departmentId, endDate, format = 'json', includeMainPlatform = true, startDate) {
|
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: '3.
|
|
111
|
+
VERSION: '3.40.0-core',
|
|
112
112
|
WITH_CREDENTIALS: false,
|
|
113
113
|
CREDENTIALS: 'include',
|
|
114
114
|
TOKEN: undefined,
|
|
@@ -10527,7 +10527,7 @@ class CredentialsService {
|
|
|
10527
10527
|
* * `json` - json
|
|
10528
10528
|
* @param includeMainPlatform Include main platform data
|
|
10529
10529
|
* @param startDate start date. ISO 8601
|
|
10530
|
-
* @returns
|
|
10530
|
+
* @returns OvertimeWithChangeInfo
|
|
10531
10531
|
* @throws ApiError
|
|
10532
10532
|
*/
|
|
10533
10533
|
static credentialsOrgsUsersAssertionsOverTimeRetrieve(org, userId, departmentId, endDate, format = 'json', includeMainPlatform = true, startDate) {
|
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: '3.
|
|
117
|
+
VERSION: '3.40.0-core',
|
|
118
118
|
WITH_CREDENTIALS: false,
|
|
119
119
|
CREDENTIALS: 'include',
|
|
120
120
|
TOKEN: undefined,
|
|
@@ -10533,7 +10533,7 @@
|
|
|
10533
10533
|
* * `json` - json
|
|
10534
10534
|
* @param includeMainPlatform Include main platform data
|
|
10535
10535
|
* @param startDate start date. ISO 8601
|
|
10536
|
-
* @returns
|
|
10536
|
+
* @returns OvertimeWithChangeInfo
|
|
10537
10537
|
* @throws ApiError
|
|
10538
10538
|
*/
|
|
10539
10539
|
static credentialsOrgsUsersAssertionsOverTimeRetrieve(org, userId, departmentId, endDate, format = 'json', includeMainPlatform = true, startDate) {
|
|
@@ -4,6 +4,7 @@ import type { Credential } from '../models/Credential';
|
|
|
4
4
|
import type { Issuer } from '../models/Issuer';
|
|
5
5
|
import type { IssuerAuthority } from '../models/IssuerAuthority';
|
|
6
6
|
import type { OverTime } from '../models/OverTime';
|
|
7
|
+
import type { OvertimeWithChangeInfo } from '../models/OvertimeWithChangeInfo';
|
|
7
8
|
import type { UploadedImage } from '../models/UploadedImage';
|
|
8
9
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
10
|
export declare class CredentialsService {
|
|
@@ -448,10 +449,10 @@ export declare class CredentialsService {
|
|
|
448
449
|
* * `json` - json
|
|
449
450
|
* @param includeMainPlatform Include main platform data
|
|
450
451
|
* @param startDate start date. ISO 8601
|
|
451
|
-
* @returns
|
|
452
|
+
* @returns OvertimeWithChangeInfo
|
|
452
453
|
* @throws ApiError
|
|
453
454
|
*/
|
|
454
|
-
static credentialsOrgsUsersAssertionsOverTimeRetrieve(org: string, userId: string, departmentId?: number, endDate?: string, format?: 'json', includeMainPlatform?: boolean, startDate?: string): CancelablePromise<
|
|
455
|
+
static credentialsOrgsUsersAssertionsOverTimeRetrieve(org: string, userId: string, departmentId?: number, endDate?: string, format?: 'json', includeMainPlatform?: boolean, startDate?: string): CancelablePromise<OvertimeWithChangeInfo>;
|
|
455
456
|
/**
|
|
456
457
|
* Endpoint to retrieve and update a specific credential assertion.
|
|
457
458
|
*
|
package/package.json
CHANGED
package/src/core/OpenAPI.ts
CHANGED
|
@@ -8,6 +8,7 @@ import type { Credential } from '../models/Credential';
|
|
|
8
8
|
import type { Issuer } from '../models/Issuer';
|
|
9
9
|
import type { IssuerAuthority } from '../models/IssuerAuthority';
|
|
10
10
|
import type { OverTime } from '../models/OverTime';
|
|
11
|
+
import type { OvertimeWithChangeInfo } from '../models/OvertimeWithChangeInfo';
|
|
11
12
|
import type { UploadedImage } from '../models/UploadedImage';
|
|
12
13
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
13
14
|
import { OpenAPI } from '../core/OpenAPI';
|
|
@@ -596,7 +597,7 @@ export class CredentialsService {
|
|
|
596
597
|
* * `json` - json
|
|
597
598
|
* @param includeMainPlatform Include main platform data
|
|
598
599
|
* @param startDate start date. ISO 8601
|
|
599
|
-
* @returns
|
|
600
|
+
* @returns OvertimeWithChangeInfo
|
|
600
601
|
* @throws ApiError
|
|
601
602
|
*/
|
|
602
603
|
public static credentialsOrgsUsersAssertionsOverTimeRetrieve(
|
|
@@ -607,7 +608,7 @@ export class CredentialsService {
|
|
|
607
608
|
format: 'json' = 'json',
|
|
608
609
|
includeMainPlatform: boolean = true,
|
|
609
610
|
startDate?: string,
|
|
610
|
-
): CancelablePromise<
|
|
611
|
+
): CancelablePromise<OvertimeWithChangeInfo> {
|
|
611
612
|
return __request(OpenAPI, {
|
|
612
613
|
method: 'GET',
|
|
613
614
|
url: '/api/credentials/orgs/{org}/users/{user_id}/assertions-over-time/',
|