aidp-typescript-client 4.1.0 → 4.1.1
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/lib/client.d.ts +85 -85
- package/dist/lib/client.js +263 -263
- package/dist/lib/client.js.map +1 -1
- package/dist/lib/model/identity-user-metadatum.d.ts +25 -0
- package/dist/lib/model/identity-user-metadatum.js +19 -0
- package/dist/lib/model/identity-user-metadatum.js.map +1 -0
- package/dist/lib/model/index.d.ts +2 -0
- package/dist/lib/model/index.js +16 -14
- package/dist/lib/model/index.js.map +1 -1
- package/dist/lib/request/index.d.ts +4 -4
- package/dist/lib/request/index.js.map +1 -1
- package/dist/lib/response/index.d.ts +4 -4
- package/lib/client.ts +1085 -1085
- package/lib/model/identity-user-metadatum.ts +63 -0
- package/lib/model/index.ts +2 -0
- package/lib/request/index.ts +4 -4
- package/lib/response/index.ts +4 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
// Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
import * as model from '../model';
|
|
4
|
+
import common = require("oci-common");
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* The user metadata for a given id.
|
|
9
|
+
*/
|
|
10
|
+
export interface IdentityUserMetadatum {
|
|
11
|
+
/**
|
|
12
|
+
* The ID of the user.
|
|
13
|
+
*/
|
|
14
|
+
'userId': string;
|
|
15
|
+
/**
|
|
16
|
+
* The unique id used during login as name.
|
|
17
|
+
*/
|
|
18
|
+
'userName': string;
|
|
19
|
+
/**
|
|
20
|
+
* The display name used by the user
|
|
21
|
+
*/
|
|
22
|
+
'userDisplayName'?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The email of the user.
|
|
25
|
+
*/
|
|
26
|
+
'userEmail'?: string;
|
|
27
|
+
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export namespace IdentityUserMetadatum {
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
export function getJsonObj(obj: IdentityUserMetadatum): object {
|
|
37
|
+
const jsonObj = {...obj, ...{
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
}};
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
return jsonObj;
|
|
48
|
+
}
|
|
49
|
+
;
|
|
50
|
+
export function getDeserializedJsonObj(obj: IdentityUserMetadatum): object {
|
|
51
|
+
const jsonObj = {...obj, ...{
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
}};
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
return jsonObj;
|
|
62
|
+
}
|
|
63
|
+
}
|
package/lib/model/index.ts
CHANGED
|
@@ -652,6 +652,8 @@ import * as IdentityGroupSummary from './identity-group-summary';
|
|
|
652
652
|
export import IdentityGroupSummary = IdentityGroupSummary.IdentityGroupSummary;
|
|
653
653
|
import * as IdentityUserCollection from './identity-user-collection';
|
|
654
654
|
export import IdentityUserCollection = IdentityUserCollection.IdentityUserCollection;
|
|
655
|
+
import * as IdentityUserMetadatum from './identity-user-metadatum';
|
|
656
|
+
export import IdentityUserMetadatum = IdentityUserMetadatum.IdentityUserMetadatum;
|
|
655
657
|
import * as IdentityUserSummary from './identity-user-summary';
|
|
656
658
|
export import IdentityUserSummary = IdentityUserSummary.IdentityUserSummary;
|
|
657
659
|
import * as InferSchema from './infer-schema';
|
package/lib/request/index.ts
CHANGED
|
@@ -132,6 +132,10 @@ import * as ListCredentialsRequest from './list-credentials-request';
|
|
|
132
132
|
export import ListCredentialsRequest = ListCredentialsRequest.ListCredentialsRequest;
|
|
133
133
|
import * as UpdateCredentialRequest from './update-credential-request';
|
|
134
134
|
export import UpdateCredentialRequest = UpdateCredentialRequest.UpdateCredentialRequest;
|
|
135
|
+
import * as ExportLineageRequest from './export-lineage-request';
|
|
136
|
+
export import ExportLineageRequest = ExportLineageRequest.ExportLineageRequest;
|
|
137
|
+
import * as FetchEntityLineageRequest from './fetch-entity-lineage-request';
|
|
138
|
+
export import FetchEntityLineageRequest = FetchEntityLineageRequest.FetchEntityLineageRequest;
|
|
135
139
|
import * as CreateRecipientRequest from './create-recipient-request';
|
|
136
140
|
export import CreateRecipientRequest = CreateRecipientRequest.CreateRecipientRequest;
|
|
137
141
|
import * as CreateShareRequest from './create-share-request';
|
|
@@ -386,10 +390,6 @@ import * as UpdateTableRequest from './update-table-request';
|
|
|
386
390
|
export import UpdateTableRequest = UpdateTableRequest.UpdateTableRequest;
|
|
387
391
|
import * as UpdateViewRequest from './update-view-request';
|
|
388
392
|
export import UpdateViewRequest = UpdateViewRequest.UpdateViewRequest;
|
|
389
|
-
import * as ExportLineageRequest from './export-lineage-request';
|
|
390
|
-
export import ExportLineageRequest = ExportLineageRequest.ExportLineageRequest;
|
|
391
|
-
import * as FetchEntityLineageRequest from './fetch-entity-lineage-request';
|
|
392
|
-
export import FetchEntityLineageRequest = FetchEntityLineageRequest.FetchEntityLineageRequest;
|
|
393
393
|
import * as CreateUserSettingRequest from './create-user-setting-request';
|
|
394
394
|
export import CreateUserSettingRequest = CreateUserSettingRequest.CreateUserSettingRequest;
|
|
395
395
|
import * as DeleteUserSettingRequest from './delete-user-setting-request';
|
package/lib/response/index.ts
CHANGED
|
@@ -132,6 +132,10 @@ import * as ListCredentialsResponse from './list-credentials-response';
|
|
|
132
132
|
export import ListCredentialsResponse = ListCredentialsResponse.ListCredentialsResponse;
|
|
133
133
|
import * as UpdateCredentialResponse from './update-credential-response';
|
|
134
134
|
export import UpdateCredentialResponse = UpdateCredentialResponse.UpdateCredentialResponse;
|
|
135
|
+
import * as ExportLineageResponse from './export-lineage-response';
|
|
136
|
+
export import ExportLineageResponse = ExportLineageResponse.ExportLineageResponse;
|
|
137
|
+
import * as FetchEntityLineageResponse from './fetch-entity-lineage-response';
|
|
138
|
+
export import FetchEntityLineageResponse = FetchEntityLineageResponse.FetchEntityLineageResponse;
|
|
135
139
|
import * as CreateRecipientResponse from './create-recipient-response';
|
|
136
140
|
export import CreateRecipientResponse = CreateRecipientResponse.CreateRecipientResponse;
|
|
137
141
|
import * as CreateShareResponse from './create-share-response';
|
|
@@ -386,10 +390,6 @@ import * as UpdateTableResponse from './update-table-response';
|
|
|
386
390
|
export import UpdateTableResponse = UpdateTableResponse.UpdateTableResponse;
|
|
387
391
|
import * as UpdateViewResponse from './update-view-response';
|
|
388
392
|
export import UpdateViewResponse = UpdateViewResponse.UpdateViewResponse;
|
|
389
|
-
import * as ExportLineageResponse from './export-lineage-response';
|
|
390
|
-
export import ExportLineageResponse = ExportLineageResponse.ExportLineageResponse;
|
|
391
|
-
import * as FetchEntityLineageResponse from './fetch-entity-lineage-response';
|
|
392
|
-
export import FetchEntityLineageResponse = FetchEntityLineageResponse.FetchEntityLineageResponse;
|
|
393
393
|
import * as CreateUserSettingResponse from './create-user-setting-response';
|
|
394
394
|
export import CreateUserSettingResponse = CreateUserSettingResponse.CreateUserSettingResponse;
|
|
395
395
|
import * as DeleteUserSettingResponse from './delete-user-setting-response';
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aidp-typescript-client",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "aidp-typescript-client",
|
|
9
|
-
"version": "4.1.
|
|
9
|
+
"version": "4.1.1",
|
|
10
10
|
"license": "UPL-1.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"oci-common": "2.126.3"
|