@smartytalent/api-client 0.7.7 → 0.7.9
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/apis/UsersApi.d.ts +123 -1
- package/dist/apis/UsersApi.d.ts.map +1 -1
- package/dist/apis/UsersApi.js +261 -1
- package/dist/apis/UsersApi.js.map +1 -1
- package/dist/models/CompleteUserIdentityLinkRequest.d.ts +34 -0
- package/dist/models/CompleteUserIdentityLinkRequest.d.ts.map +1 -0
- package/dist/models/CompleteUserIdentityLinkRequest.js +50 -0
- package/dist/models/CompleteUserIdentityLinkRequest.js.map +1 -0
- package/dist/models/CompleteUserIdentityLinkRequestData.d.ts +47 -0
- package/dist/models/CompleteUserIdentityLinkRequestData.d.ts.map +1 -0
- package/dist/models/CompleteUserIdentityLinkRequestData.js +59 -0
- package/dist/models/CompleteUserIdentityLinkRequestData.js.map +1 -0
- package/dist/models/CompleteUserIdentityLinkRequestDataAttributes.d.ts +39 -0
- package/dist/models/CompleteUserIdentityLinkRequestDataAttributes.d.ts.map +1 -0
- package/dist/models/CompleteUserIdentityLinkRequestDataAttributes.js +55 -0
- package/dist/models/CompleteUserIdentityLinkRequestDataAttributes.js.map +1 -0
- package/dist/models/IdentityLinkSchema.d.ts +34 -0
- package/dist/models/IdentityLinkSchema.d.ts.map +1 -0
- package/dist/models/IdentityLinkSchema.js +50 -0
- package/dist/models/IdentityLinkSchema.js.map +1 -0
- package/dist/models/IdentityLinkSchemaData.d.ts +46 -0
- package/dist/models/IdentityLinkSchemaData.d.ts.map +1 -0
- package/dist/models/IdentityLinkSchemaData.js +54 -0
- package/dist/models/IdentityLinkSchemaData.js.map +1 -0
- package/dist/models/IdentityLinkSchemaDataAttributes.d.ts +59 -0
- package/dist/models/IdentityLinkSchemaDataAttributes.d.ts.map +1 -0
- package/dist/models/IdentityLinkSchemaDataAttributes.js +60 -0
- package/dist/models/IdentityLinkSchemaDataAttributes.js.map +1 -0
- package/dist/models/StartUserIdentityLinkRequest.d.ts +34 -0
- package/dist/models/StartUserIdentityLinkRequest.d.ts.map +1 -0
- package/dist/models/StartUserIdentityLinkRequest.js +50 -0
- package/dist/models/StartUserIdentityLinkRequest.js.map +1 -0
- package/dist/models/StartUserIdentityLinkRequestData.d.ts +47 -0
- package/dist/models/StartUserIdentityLinkRequestData.d.ts.map +1 -0
- package/dist/models/StartUserIdentityLinkRequestData.js +59 -0
- package/dist/models/StartUserIdentityLinkRequestData.js.map +1 -0
- package/dist/models/StartUserIdentityLinkRequestDataAttributes.d.ts +41 -0
- package/dist/models/StartUserIdentityLinkRequestDataAttributes.d.ts.map +1 -0
- package/dist/models/StartUserIdentityLinkRequestDataAttributes.js +59 -0
- package/dist/models/StartUserIdentityLinkRequestDataAttributes.js.map +1 -0
- package/dist/models/index.d.ts +9 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/index.js +9 -0
- package/dist/models/index.js.map +1 -1
- package/package.json +1 -1
package/dist/apis/UsersApi.d.ts
CHANGED
|
@@ -10,7 +10,11 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { ApikeysSchema, CreateUserRequestBody, CreateUserUploadRequestBody, JobsSchema, ListUserApikeysRelationship, ListUserJobsRelationship, ListUserRolesRelationship, RolesSchema, UpdateUserRequestBody, UserInvitationSchema, UserSchema, UserUploadSchema, UsersSchema } from '../models/index';
|
|
13
|
+
import type { ApikeysSchema, CompleteUserIdentityLinkRequest, CreateUserRequestBody, CreateUserUploadRequestBody, IdentityLinkSchema, JobsSchema, ListUserApikeysRelationship, ListUserJobsRelationship, ListUserRolesRelationship, RolesSchema, StartUserIdentityLinkRequest, UpdateUserRequestBody, UserInvitationSchema, UserSchema, UserUploadSchema, UsersSchema } from '../models/index';
|
|
14
|
+
export interface CompleteUserIdentityLinkOperationRequest {
|
|
15
|
+
userId: string;
|
|
16
|
+
completeUserIdentityLinkRequest: CompleteUserIdentityLinkRequest;
|
|
17
|
+
}
|
|
14
18
|
export interface CreateUserRequest {
|
|
15
19
|
createUserRequestBody: CreateUserRequestBody;
|
|
16
20
|
}
|
|
@@ -25,6 +29,10 @@ export interface DeleteUserRequest {
|
|
|
25
29
|
userId: string;
|
|
26
30
|
permanentDelete?: DeleteUserPermanentDeleteEnum;
|
|
27
31
|
}
|
|
32
|
+
export interface DeleteUserIdentityRequest {
|
|
33
|
+
userId: string;
|
|
34
|
+
provider: DeleteUserIdentityProviderEnum;
|
|
35
|
+
}
|
|
28
36
|
export interface ListUserApikeysRequest {
|
|
29
37
|
userId: string;
|
|
30
38
|
}
|
|
@@ -57,6 +65,10 @@ export interface ListUsersRequest {
|
|
|
57
65
|
export interface ShowUserRequest {
|
|
58
66
|
userId: string;
|
|
59
67
|
}
|
|
68
|
+
export interface StartUserIdentityLinkOperationRequest {
|
|
69
|
+
userId: string;
|
|
70
|
+
startUserIdentityLinkRequest: StartUserIdentityLinkRequest;
|
|
71
|
+
}
|
|
60
72
|
export interface UpdateUserRequest {
|
|
61
73
|
userId: string;
|
|
62
74
|
updateUserRequestBody: UpdateUserRequestBody;
|
|
@@ -67,6 +79,16 @@ export interface UserApikeysOptionsRequest {
|
|
|
67
79
|
export interface UserApikeysRelationshipsOptionsRequest {
|
|
68
80
|
userId: string;
|
|
69
81
|
}
|
|
82
|
+
export interface UserIdentitiesOptionsRequest {
|
|
83
|
+
userId: string;
|
|
84
|
+
}
|
|
85
|
+
export interface UserIdentityCompleteOptionsRequest {
|
|
86
|
+
userId: string;
|
|
87
|
+
}
|
|
88
|
+
export interface UserIdentityOptionsRequest {
|
|
89
|
+
userId: string;
|
|
90
|
+
provider: UserIdentityOptionsProviderEnum;
|
|
91
|
+
}
|
|
70
92
|
export interface UserInvitationsOptionsRequest {
|
|
71
93
|
userId: string;
|
|
72
94
|
}
|
|
@@ -92,6 +114,20 @@ export interface UserUploadsOptionsRequest {
|
|
|
92
114
|
*
|
|
93
115
|
*/
|
|
94
116
|
export declare class UsersApi extends runtime.BaseAPI {
|
|
117
|
+
/**
|
|
118
|
+
* Creates request options for completeUserIdentityLink without sending the request
|
|
119
|
+
*/
|
|
120
|
+
completeUserIdentityLinkRequestOpts(requestParameters: CompleteUserIdentityLinkOperationRequest): Promise<runtime.RequestOpts>;
|
|
121
|
+
/**
|
|
122
|
+
* Finishes the link. The provider redirects the person to a page in the app, which still holds their session; that page reads `code` and `state` from the query string and posts them here WITH their token. Self, or role sysowner/owner/admin. Authenticated on purpose, and this is the security property that matters. An earlier revision took this on a public API callback bound by the nonce alone - defensible, since the nonce is 32 bytes, single-use and ten minutes old at most, but it made that nonce a bearer secret travelling through a browser, where it lands in history, referrers and over people\'s shoulders. Leaked before use it resurrected the takeover the whole design exists to prevent. Here the server sees the nonce AND who is asking, so a stolen nonce buys nothing without the victim\'s session. `state` is therefore just the nonce: the row is addressed by the path and the token, and nothing identifying travels to the provider. The nonce is consumed BEFORE the code is exchanged, so a replay cannot ride a slow provider call; the cost is that a refusal further down forces a fresh start. A wrong nonce, an absent pending link and an expired one all answer identically - telling them apart would help somebody probing for a live flow.
|
|
123
|
+
* Complete Linking A Social Account
|
|
124
|
+
*/
|
|
125
|
+
completeUserIdentityLinkRaw(requestParameters: CompleteUserIdentityLinkOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdentityLinkSchema>>;
|
|
126
|
+
/**
|
|
127
|
+
* Finishes the link. The provider redirects the person to a page in the app, which still holds their session; that page reads `code` and `state` from the query string and posts them here WITH their token. Self, or role sysowner/owner/admin. Authenticated on purpose, and this is the security property that matters. An earlier revision took this on a public API callback bound by the nonce alone - defensible, since the nonce is 32 bytes, single-use and ten minutes old at most, but it made that nonce a bearer secret travelling through a browser, where it lands in history, referrers and over people\'s shoulders. Leaked before use it resurrected the takeover the whole design exists to prevent. Here the server sees the nonce AND who is asking, so a stolen nonce buys nothing without the victim\'s session. `state` is therefore just the nonce: the row is addressed by the path and the token, and nothing identifying travels to the provider. The nonce is consumed BEFORE the code is exchanged, so a replay cannot ride a slow provider call; the cost is that a refusal further down forces a fresh start. A wrong nonce, an absent pending link and an expired one all answer identically - telling them apart would help somebody probing for a live flow.
|
|
128
|
+
* Complete Linking A Social Account
|
|
129
|
+
*/
|
|
130
|
+
completeUserIdentityLink(requestParameters: CompleteUserIdentityLinkOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdentityLinkSchema>;
|
|
95
131
|
/**
|
|
96
132
|
* Creates request options for createUser without sending the request
|
|
97
133
|
*/
|
|
@@ -148,6 +184,20 @@ export declare class UsersApi extends runtime.BaseAPI {
|
|
|
148
184
|
* Delete User
|
|
149
185
|
*/
|
|
150
186
|
deleteUser(requestParameters: DeleteUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
187
|
+
/**
|
|
188
|
+
* Creates request options for deleteUserIdentity without sending the request
|
|
189
|
+
*/
|
|
190
|
+
deleteUserIdentityRequestOpts(requestParameters: DeleteUserIdentityRequest): Promise<runtime.RequestOpts>;
|
|
191
|
+
/**
|
|
192
|
+
* Removes a linked Google or LinkedIn account: disables the provider for the user in Cognito and drops the entry from `identities`. Self, or role sysowner/owner/admin. A provider already absent from Cognito is treated as success - the row is what the product lists, and refusing would leave an entry nobody could remove. `ms-*` providers are rejected: an enterprise link is torn down with the connection, not one person at a time.
|
|
193
|
+
* Unlink A Social Account
|
|
194
|
+
*/
|
|
195
|
+
deleteUserIdentityRaw(requestParameters: DeleteUserIdentityRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdentityLinkSchema>>;
|
|
196
|
+
/**
|
|
197
|
+
* Removes a linked Google or LinkedIn account: disables the provider for the user in Cognito and drops the entry from `identities`. Self, or role sysowner/owner/admin. A provider already absent from Cognito is treated as success - the row is what the product lists, and refusing would leave an entry nobody could remove. `ms-*` providers are rejected: an enterprise link is torn down with the connection, not one person at a time.
|
|
198
|
+
* Unlink A Social Account
|
|
199
|
+
*/
|
|
200
|
+
deleteUserIdentity(requestParameters: DeleteUserIdentityRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdentityLinkSchema>;
|
|
151
201
|
/**
|
|
152
202
|
* Creates request options for listUserApikeys without sending the request
|
|
153
203
|
*/
|
|
@@ -260,6 +310,20 @@ export declare class UsersApi extends runtime.BaseAPI {
|
|
|
260
310
|
* Show User
|
|
261
311
|
*/
|
|
262
312
|
showUser(requestParameters: ShowUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserSchema>;
|
|
313
|
+
/**
|
|
314
|
+
* Creates request options for startUserIdentityLink without sending the request
|
|
315
|
+
*/
|
|
316
|
+
startUserIdentityLinkRequestOpts(requestParameters: StartUserIdentityLinkOperationRequest): Promise<runtime.RequestOpts>;
|
|
317
|
+
/**
|
|
318
|
+
* Begins linking a personal Google or LinkedIn account to this user, and returns the PROVIDER\'s authorization URL to send them to. Self, or a caller with role sysowner/owner/admin. The URL goes straight to the provider, never through Cognito\'s /oauth2/authorize: going through Cognito would mint a federated profile before anything has been decided, and AdminLinkProviderForUser has to run BEFORE the first federated sign-in or Cognito creates a duplicate that then has to be deleted. The link carried in `state` is a server-minted nonce, single-use, valid for ten minutes. That nonce is what binds the identity that comes back to the session that asked for it - and it is the whole reason this flow exists rather than a Cognito-side one. An earlier design let the presignup trigger consume a pending link, which could only correlate on email plus provider: an attacker who walked the OAuth flow with their own Google account inside the window got attached to the victim\'s account. Only `Google` and `LinkedIn` are accepted here; `ms-*` providers belong to enterprise SSO, where the link is made against a domain the customer has proven they own. Posting again replaces any pending link, which also invalidates it.
|
|
319
|
+
* Start Linking A Social Account
|
|
320
|
+
*/
|
|
321
|
+
startUserIdentityLinkRaw(requestParameters: StartUserIdentityLinkOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdentityLinkSchema>>;
|
|
322
|
+
/**
|
|
323
|
+
* Begins linking a personal Google or LinkedIn account to this user, and returns the PROVIDER\'s authorization URL to send them to. Self, or a caller with role sysowner/owner/admin. The URL goes straight to the provider, never through Cognito\'s /oauth2/authorize: going through Cognito would mint a federated profile before anything has been decided, and AdminLinkProviderForUser has to run BEFORE the first federated sign-in or Cognito creates a duplicate that then has to be deleted. The link carried in `state` is a server-minted nonce, single-use, valid for ten minutes. That nonce is what binds the identity that comes back to the session that asked for it - and it is the whole reason this flow exists rather than a Cognito-side one. An earlier design let the presignup trigger consume a pending link, which could only correlate on email plus provider: an attacker who walked the OAuth flow with their own Google account inside the window got attached to the victim\'s account. Only `Google` and `LinkedIn` are accepted here; `ms-*` providers belong to enterprise SSO, where the link is made against a domain the customer has proven they own. Posting again replaces any pending link, which also invalidates it.
|
|
324
|
+
* Start Linking A Social Account
|
|
325
|
+
*/
|
|
326
|
+
startUserIdentityLink(requestParameters: StartUserIdentityLinkOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdentityLinkSchema>;
|
|
263
327
|
/**
|
|
264
328
|
* Creates request options for updateUser without sending the request
|
|
265
329
|
*/
|
|
@@ -302,6 +366,48 @@ export declare class UsersApi extends runtime.BaseAPI {
|
|
|
302
366
|
* User Apikeys Relationships Options
|
|
303
367
|
*/
|
|
304
368
|
userApikeysRelationshipsOptions(requestParameters: UserApikeysRelationshipsOptionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
369
|
+
/**
|
|
370
|
+
* Creates request options for userIdentitiesOptions without sending the request
|
|
371
|
+
*/
|
|
372
|
+
userIdentitiesOptionsRequestOpts(requestParameters: UserIdentitiesOptionsRequest): Promise<runtime.RequestOpts>;
|
|
373
|
+
/**
|
|
374
|
+
* Enable CORS by returning correct headers
|
|
375
|
+
* User Identities Options
|
|
376
|
+
*/
|
|
377
|
+
userIdentitiesOptionsRaw(requestParameters: UserIdentitiesOptionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
378
|
+
/**
|
|
379
|
+
* Enable CORS by returning correct headers
|
|
380
|
+
* User Identities Options
|
|
381
|
+
*/
|
|
382
|
+
userIdentitiesOptions(requestParameters: UserIdentitiesOptionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
383
|
+
/**
|
|
384
|
+
* Creates request options for userIdentityCompleteOptions without sending the request
|
|
385
|
+
*/
|
|
386
|
+
userIdentityCompleteOptionsRequestOpts(requestParameters: UserIdentityCompleteOptionsRequest): Promise<runtime.RequestOpts>;
|
|
387
|
+
/**
|
|
388
|
+
* Enable CORS by returning correct headers
|
|
389
|
+
* User Identity Complete Options
|
|
390
|
+
*/
|
|
391
|
+
userIdentityCompleteOptionsRaw(requestParameters: UserIdentityCompleteOptionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
392
|
+
/**
|
|
393
|
+
* Enable CORS by returning correct headers
|
|
394
|
+
* User Identity Complete Options
|
|
395
|
+
*/
|
|
396
|
+
userIdentityCompleteOptions(requestParameters: UserIdentityCompleteOptionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
397
|
+
/**
|
|
398
|
+
* Creates request options for userIdentityOptions without sending the request
|
|
399
|
+
*/
|
|
400
|
+
userIdentityOptionsRequestOpts(requestParameters: UserIdentityOptionsRequest): Promise<runtime.RequestOpts>;
|
|
401
|
+
/**
|
|
402
|
+
* Enable CORS by returning correct headers
|
|
403
|
+
* User Identity Options
|
|
404
|
+
*/
|
|
405
|
+
userIdentityOptionsRaw(requestParameters: UserIdentityOptionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
406
|
+
/**
|
|
407
|
+
* Enable CORS by returning correct headers
|
|
408
|
+
* User Identity Options
|
|
409
|
+
*/
|
|
410
|
+
userIdentityOptions(requestParameters: UserIdentityOptionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
305
411
|
/**
|
|
306
412
|
* Creates request options for userInvitationsOptions without sending the request
|
|
307
413
|
*/
|
|
@@ -423,6 +529,14 @@ export declare const DeleteUserPermanentDeleteEnum: {
|
|
|
423
529
|
readonly False: "false";
|
|
424
530
|
};
|
|
425
531
|
export type DeleteUserPermanentDeleteEnum = typeof DeleteUserPermanentDeleteEnum[keyof typeof DeleteUserPermanentDeleteEnum];
|
|
532
|
+
/**
|
|
533
|
+
* @export
|
|
534
|
+
*/
|
|
535
|
+
export declare const DeleteUserIdentityProviderEnum: {
|
|
536
|
+
readonly Google: "Google";
|
|
537
|
+
readonly LinkedIn: "LinkedIn";
|
|
538
|
+
};
|
|
539
|
+
export type DeleteUserIdentityProviderEnum = typeof DeleteUserIdentityProviderEnum[keyof typeof DeleteUserIdentityProviderEnum];
|
|
426
540
|
/**
|
|
427
541
|
* @export
|
|
428
542
|
*/
|
|
@@ -432,4 +546,12 @@ export declare const ListUsersFilterStatusEnum: {
|
|
|
432
546
|
readonly Pending: "pending";
|
|
433
547
|
};
|
|
434
548
|
export type ListUsersFilterStatusEnum = typeof ListUsersFilterStatusEnum[keyof typeof ListUsersFilterStatusEnum];
|
|
549
|
+
/**
|
|
550
|
+
* @export
|
|
551
|
+
*/
|
|
552
|
+
export declare const UserIdentityOptionsProviderEnum: {
|
|
553
|
+
readonly Google: "Google";
|
|
554
|
+
readonly LinkedIn: "LinkedIn";
|
|
555
|
+
};
|
|
556
|
+
export type UserIdentityOptionsProviderEnum = typeof UserIdentityOptionsProviderEnum[keyof typeof UserIdentityOptionsProviderEnum];
|
|
435
557
|
//# sourceMappingURL=UsersApi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UsersApi.d.ts","sourceRoot":"","sources":["../../src/apis/UsersApi.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"UsersApi.d.ts","sourceRoot":"","sources":["../../src/apis/UsersApi.ts"],"names":[],"mappings":"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"}
|
package/dist/apis/UsersApi.js
CHANGED
|
@@ -46,13 +46,60 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
46
46
|
};
|
|
47
47
|
})();
|
|
48
48
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49
|
-
exports.ListUsersFilterStatusEnum = exports.DeleteUserPermanentDeleteEnum = exports.UsersApi = void 0;
|
|
49
|
+
exports.UserIdentityOptionsProviderEnum = exports.ListUsersFilterStatusEnum = exports.DeleteUserIdentityProviderEnum = exports.DeleteUserPermanentDeleteEnum = exports.UsersApi = void 0;
|
|
50
50
|
const runtime = __importStar(require("../runtime"));
|
|
51
51
|
const index_1 = require("../models/index");
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
*/
|
|
55
55
|
class UsersApi extends runtime.BaseAPI {
|
|
56
|
+
/**
|
|
57
|
+
* Creates request options for completeUserIdentityLink without sending the request
|
|
58
|
+
*/
|
|
59
|
+
async completeUserIdentityLinkRequestOpts(requestParameters) {
|
|
60
|
+
if (requestParameters['userId'] == null) {
|
|
61
|
+
throw new runtime.RequiredError('userId', 'Required parameter "userId" was null or undefined when calling completeUserIdentityLink().');
|
|
62
|
+
}
|
|
63
|
+
if (requestParameters['completeUserIdentityLinkRequest'] == null) {
|
|
64
|
+
throw new runtime.RequiredError('completeUserIdentityLinkRequest', 'Required parameter "completeUserIdentityLinkRequest" was null or undefined when calling completeUserIdentityLink().');
|
|
65
|
+
}
|
|
66
|
+
const queryParameters = {};
|
|
67
|
+
const headerParameters = {};
|
|
68
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
69
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
70
|
+
headerParameters["Authorization"] = await this.configuration.apiKey("Authorization"); // ApiKeyAuth authentication
|
|
71
|
+
}
|
|
72
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
73
|
+
// oauth required
|
|
74
|
+
headerParameters["Authorization"] = await this.configuration.accessToken("OAuth2Auth", []);
|
|
75
|
+
}
|
|
76
|
+
let urlPath = `/v1/users/{userId}/identities/complete`;
|
|
77
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
78
|
+
return {
|
|
79
|
+
path: urlPath,
|
|
80
|
+
method: 'POST',
|
|
81
|
+
headers: headerParameters,
|
|
82
|
+
query: queryParameters,
|
|
83
|
+
body: (0, index_1.CompleteUserIdentityLinkRequestToJSON)(requestParameters['completeUserIdentityLinkRequest']),
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Finishes the link. The provider redirects the person to a page in the app, which still holds their session; that page reads `code` and `state` from the query string and posts them here WITH their token. Self, or role sysowner/owner/admin. Authenticated on purpose, and this is the security property that matters. An earlier revision took this on a public API callback bound by the nonce alone - defensible, since the nonce is 32 bytes, single-use and ten minutes old at most, but it made that nonce a bearer secret travelling through a browser, where it lands in history, referrers and over people\'s shoulders. Leaked before use it resurrected the takeover the whole design exists to prevent. Here the server sees the nonce AND who is asking, so a stolen nonce buys nothing without the victim\'s session. `state` is therefore just the nonce: the row is addressed by the path and the token, and nothing identifying travels to the provider. The nonce is consumed BEFORE the code is exchanged, so a replay cannot ride a slow provider call; the cost is that a refusal further down forces a fresh start. A wrong nonce, an absent pending link and an expired one all answer identically - telling them apart would help somebody probing for a live flow.
|
|
88
|
+
* Complete Linking A Social Account
|
|
89
|
+
*/
|
|
90
|
+
async completeUserIdentityLinkRaw(requestParameters, initOverrides) {
|
|
91
|
+
const requestOptions = await this.completeUserIdentityLinkRequestOpts(requestParameters);
|
|
92
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
93
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.IdentityLinkSchemaFromJSON)(jsonValue));
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Finishes the link. The provider redirects the person to a page in the app, which still holds their session; that page reads `code` and `state` from the query string and posts them here WITH their token. Self, or role sysowner/owner/admin. Authenticated on purpose, and this is the security property that matters. An earlier revision took this on a public API callback bound by the nonce alone - defensible, since the nonce is 32 bytes, single-use and ten minutes old at most, but it made that nonce a bearer secret travelling through a browser, where it lands in history, referrers and over people\'s shoulders. Leaked before use it resurrected the takeover the whole design exists to prevent. Here the server sees the nonce AND who is asking, so a stolen nonce buys nothing without the victim\'s session. `state` is therefore just the nonce: the row is addressed by the path and the token, and nothing identifying travels to the provider. The nonce is consumed BEFORE the code is exchanged, so a replay cannot ride a slow provider call; the cost is that a refusal further down forces a fresh start. A wrong nonce, an absent pending link and an expired one all answer identically - telling them apart would help somebody probing for a live flow.
|
|
97
|
+
* Complete Linking A Social Account
|
|
98
|
+
*/
|
|
99
|
+
async completeUserIdentityLink(requestParameters, initOverrides) {
|
|
100
|
+
const response = await this.completeUserIdentityLinkRaw(requestParameters, initOverrides);
|
|
101
|
+
return await response.value();
|
|
102
|
+
}
|
|
56
103
|
/**
|
|
57
104
|
* Creates request options for createUser without sending the request
|
|
58
105
|
*/
|
|
@@ -229,6 +276,52 @@ class UsersApi extends runtime.BaseAPI {
|
|
|
229
276
|
async deleteUser(requestParameters, initOverrides) {
|
|
230
277
|
await this.deleteUserRaw(requestParameters, initOverrides);
|
|
231
278
|
}
|
|
279
|
+
/**
|
|
280
|
+
* Creates request options for deleteUserIdentity without sending the request
|
|
281
|
+
*/
|
|
282
|
+
async deleteUserIdentityRequestOpts(requestParameters) {
|
|
283
|
+
if (requestParameters['userId'] == null) {
|
|
284
|
+
throw new runtime.RequiredError('userId', 'Required parameter "userId" was null or undefined when calling deleteUserIdentity().');
|
|
285
|
+
}
|
|
286
|
+
if (requestParameters['provider'] == null) {
|
|
287
|
+
throw new runtime.RequiredError('provider', 'Required parameter "provider" was null or undefined when calling deleteUserIdentity().');
|
|
288
|
+
}
|
|
289
|
+
const queryParameters = {};
|
|
290
|
+
const headerParameters = {};
|
|
291
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
292
|
+
headerParameters["Authorization"] = await this.configuration.apiKey("Authorization"); // ApiKeyAuth authentication
|
|
293
|
+
}
|
|
294
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
295
|
+
// oauth required
|
|
296
|
+
headerParameters["Authorization"] = await this.configuration.accessToken("OAuth2Auth", []);
|
|
297
|
+
}
|
|
298
|
+
let urlPath = `/v1/users/{userId}/identities/{provider}`;
|
|
299
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
300
|
+
urlPath = urlPath.replace(`{${"provider"}}`, encodeURIComponent(String(requestParameters['provider'])));
|
|
301
|
+
return {
|
|
302
|
+
path: urlPath,
|
|
303
|
+
method: 'DELETE',
|
|
304
|
+
headers: headerParameters,
|
|
305
|
+
query: queryParameters,
|
|
306
|
+
};
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* Removes a linked Google or LinkedIn account: disables the provider for the user in Cognito and drops the entry from `identities`. Self, or role sysowner/owner/admin. A provider already absent from Cognito is treated as success - the row is what the product lists, and refusing would leave an entry nobody could remove. `ms-*` providers are rejected: an enterprise link is torn down with the connection, not one person at a time.
|
|
310
|
+
* Unlink A Social Account
|
|
311
|
+
*/
|
|
312
|
+
async deleteUserIdentityRaw(requestParameters, initOverrides) {
|
|
313
|
+
const requestOptions = await this.deleteUserIdentityRequestOpts(requestParameters);
|
|
314
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
315
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.IdentityLinkSchemaFromJSON)(jsonValue));
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* Removes a linked Google or LinkedIn account: disables the provider for the user in Cognito and drops the entry from `identities`. Self, or role sysowner/owner/admin. A provider already absent from Cognito is treated as success - the row is what the product lists, and refusing would leave an entry nobody could remove. `ms-*` providers are rejected: an enterprise link is torn down with the connection, not one person at a time.
|
|
319
|
+
* Unlink A Social Account
|
|
320
|
+
*/
|
|
321
|
+
async deleteUserIdentity(requestParameters, initOverrides) {
|
|
322
|
+
const response = await this.deleteUserIdentityRaw(requestParameters, initOverrides);
|
|
323
|
+
return await response.value();
|
|
324
|
+
}
|
|
232
325
|
/**
|
|
233
326
|
* Creates request options for listUserApikeys without sending the request
|
|
234
327
|
*/
|
|
@@ -588,6 +681,53 @@ class UsersApi extends runtime.BaseAPI {
|
|
|
588
681
|
const response = await this.showUserRaw(requestParameters, initOverrides);
|
|
589
682
|
return await response.value();
|
|
590
683
|
}
|
|
684
|
+
/**
|
|
685
|
+
* Creates request options for startUserIdentityLink without sending the request
|
|
686
|
+
*/
|
|
687
|
+
async startUserIdentityLinkRequestOpts(requestParameters) {
|
|
688
|
+
if (requestParameters['userId'] == null) {
|
|
689
|
+
throw new runtime.RequiredError('userId', 'Required parameter "userId" was null or undefined when calling startUserIdentityLink().');
|
|
690
|
+
}
|
|
691
|
+
if (requestParameters['startUserIdentityLinkRequest'] == null) {
|
|
692
|
+
throw new runtime.RequiredError('startUserIdentityLinkRequest', 'Required parameter "startUserIdentityLinkRequest" was null or undefined when calling startUserIdentityLink().');
|
|
693
|
+
}
|
|
694
|
+
const queryParameters = {};
|
|
695
|
+
const headerParameters = {};
|
|
696
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
697
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
698
|
+
headerParameters["Authorization"] = await this.configuration.apiKey("Authorization"); // ApiKeyAuth authentication
|
|
699
|
+
}
|
|
700
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
701
|
+
// oauth required
|
|
702
|
+
headerParameters["Authorization"] = await this.configuration.accessToken("OAuth2Auth", []);
|
|
703
|
+
}
|
|
704
|
+
let urlPath = `/v1/users/{userId}/identities`;
|
|
705
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
706
|
+
return {
|
|
707
|
+
path: urlPath,
|
|
708
|
+
method: 'POST',
|
|
709
|
+
headers: headerParameters,
|
|
710
|
+
query: queryParameters,
|
|
711
|
+
body: (0, index_1.StartUserIdentityLinkRequestToJSON)(requestParameters['startUserIdentityLinkRequest']),
|
|
712
|
+
};
|
|
713
|
+
}
|
|
714
|
+
/**
|
|
715
|
+
* Begins linking a personal Google or LinkedIn account to this user, and returns the PROVIDER\'s authorization URL to send them to. Self, or a caller with role sysowner/owner/admin. The URL goes straight to the provider, never through Cognito\'s /oauth2/authorize: going through Cognito would mint a federated profile before anything has been decided, and AdminLinkProviderForUser has to run BEFORE the first federated sign-in or Cognito creates a duplicate that then has to be deleted. The link carried in `state` is a server-minted nonce, single-use, valid for ten minutes. That nonce is what binds the identity that comes back to the session that asked for it - and it is the whole reason this flow exists rather than a Cognito-side one. An earlier design let the presignup trigger consume a pending link, which could only correlate on email plus provider: an attacker who walked the OAuth flow with their own Google account inside the window got attached to the victim\'s account. Only `Google` and `LinkedIn` are accepted here; `ms-*` providers belong to enterprise SSO, where the link is made against a domain the customer has proven they own. Posting again replaces any pending link, which also invalidates it.
|
|
716
|
+
* Start Linking A Social Account
|
|
717
|
+
*/
|
|
718
|
+
async startUserIdentityLinkRaw(requestParameters, initOverrides) {
|
|
719
|
+
const requestOptions = await this.startUserIdentityLinkRequestOpts(requestParameters);
|
|
720
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
721
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.IdentityLinkSchemaFromJSON)(jsonValue));
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* Begins linking a personal Google or LinkedIn account to this user, and returns the PROVIDER\'s authorization URL to send them to. Self, or a caller with role sysowner/owner/admin. The URL goes straight to the provider, never through Cognito\'s /oauth2/authorize: going through Cognito would mint a federated profile before anything has been decided, and AdminLinkProviderForUser has to run BEFORE the first federated sign-in or Cognito creates a duplicate that then has to be deleted. The link carried in `state` is a server-minted nonce, single-use, valid for ten minutes. That nonce is what binds the identity that comes back to the session that asked for it - and it is the whole reason this flow exists rather than a Cognito-side one. An earlier design let the presignup trigger consume a pending link, which could only correlate on email plus provider: an attacker who walked the OAuth flow with their own Google account inside the window got attached to the victim\'s account. Only `Google` and `LinkedIn` are accepted here; `ms-*` providers belong to enterprise SSO, where the link is made against a domain the customer has proven they own. Posting again replaces any pending link, which also invalidates it.
|
|
725
|
+
* Start Linking A Social Account
|
|
726
|
+
*/
|
|
727
|
+
async startUserIdentityLink(requestParameters, initOverrides) {
|
|
728
|
+
const response = await this.startUserIdentityLinkRaw(requestParameters, initOverrides);
|
|
729
|
+
return await response.value();
|
|
730
|
+
}
|
|
591
731
|
/**
|
|
592
732
|
* Creates request options for updateUser without sending the request
|
|
593
733
|
*/
|
|
@@ -703,6 +843,112 @@ class UsersApi extends runtime.BaseAPI {
|
|
|
703
843
|
async userApikeysRelationshipsOptions(requestParameters, initOverrides) {
|
|
704
844
|
await this.userApikeysRelationshipsOptionsRaw(requestParameters, initOverrides);
|
|
705
845
|
}
|
|
846
|
+
/**
|
|
847
|
+
* Creates request options for userIdentitiesOptions without sending the request
|
|
848
|
+
*/
|
|
849
|
+
async userIdentitiesOptionsRequestOpts(requestParameters) {
|
|
850
|
+
if (requestParameters['userId'] == null) {
|
|
851
|
+
throw new runtime.RequiredError('userId', 'Required parameter "userId" was null or undefined when calling userIdentitiesOptions().');
|
|
852
|
+
}
|
|
853
|
+
const queryParameters = {};
|
|
854
|
+
const headerParameters = {};
|
|
855
|
+
let urlPath = `/v1/users/{userId}/identities`;
|
|
856
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
857
|
+
return {
|
|
858
|
+
path: urlPath,
|
|
859
|
+
method: 'OPTIONS',
|
|
860
|
+
headers: headerParameters,
|
|
861
|
+
query: queryParameters,
|
|
862
|
+
};
|
|
863
|
+
}
|
|
864
|
+
/**
|
|
865
|
+
* Enable CORS by returning correct headers
|
|
866
|
+
* User Identities Options
|
|
867
|
+
*/
|
|
868
|
+
async userIdentitiesOptionsRaw(requestParameters, initOverrides) {
|
|
869
|
+
const requestOptions = await this.userIdentitiesOptionsRequestOpts(requestParameters);
|
|
870
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
871
|
+
return new runtime.VoidApiResponse(response);
|
|
872
|
+
}
|
|
873
|
+
/**
|
|
874
|
+
* Enable CORS by returning correct headers
|
|
875
|
+
* User Identities Options
|
|
876
|
+
*/
|
|
877
|
+
async userIdentitiesOptions(requestParameters, initOverrides) {
|
|
878
|
+
await this.userIdentitiesOptionsRaw(requestParameters, initOverrides);
|
|
879
|
+
}
|
|
880
|
+
/**
|
|
881
|
+
* Creates request options for userIdentityCompleteOptions without sending the request
|
|
882
|
+
*/
|
|
883
|
+
async userIdentityCompleteOptionsRequestOpts(requestParameters) {
|
|
884
|
+
if (requestParameters['userId'] == null) {
|
|
885
|
+
throw new runtime.RequiredError('userId', 'Required parameter "userId" was null or undefined when calling userIdentityCompleteOptions().');
|
|
886
|
+
}
|
|
887
|
+
const queryParameters = {};
|
|
888
|
+
const headerParameters = {};
|
|
889
|
+
let urlPath = `/v1/users/{userId}/identities/complete`;
|
|
890
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
891
|
+
return {
|
|
892
|
+
path: urlPath,
|
|
893
|
+
method: 'OPTIONS',
|
|
894
|
+
headers: headerParameters,
|
|
895
|
+
query: queryParameters,
|
|
896
|
+
};
|
|
897
|
+
}
|
|
898
|
+
/**
|
|
899
|
+
* Enable CORS by returning correct headers
|
|
900
|
+
* User Identity Complete Options
|
|
901
|
+
*/
|
|
902
|
+
async userIdentityCompleteOptionsRaw(requestParameters, initOverrides) {
|
|
903
|
+
const requestOptions = await this.userIdentityCompleteOptionsRequestOpts(requestParameters);
|
|
904
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
905
|
+
return new runtime.VoidApiResponse(response);
|
|
906
|
+
}
|
|
907
|
+
/**
|
|
908
|
+
* Enable CORS by returning correct headers
|
|
909
|
+
* User Identity Complete Options
|
|
910
|
+
*/
|
|
911
|
+
async userIdentityCompleteOptions(requestParameters, initOverrides) {
|
|
912
|
+
await this.userIdentityCompleteOptionsRaw(requestParameters, initOverrides);
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* Creates request options for userIdentityOptions without sending the request
|
|
916
|
+
*/
|
|
917
|
+
async userIdentityOptionsRequestOpts(requestParameters) {
|
|
918
|
+
if (requestParameters['userId'] == null) {
|
|
919
|
+
throw new runtime.RequiredError('userId', 'Required parameter "userId" was null or undefined when calling userIdentityOptions().');
|
|
920
|
+
}
|
|
921
|
+
if (requestParameters['provider'] == null) {
|
|
922
|
+
throw new runtime.RequiredError('provider', 'Required parameter "provider" was null or undefined when calling userIdentityOptions().');
|
|
923
|
+
}
|
|
924
|
+
const queryParameters = {};
|
|
925
|
+
const headerParameters = {};
|
|
926
|
+
let urlPath = `/v1/users/{userId}/identities/{provider}`;
|
|
927
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
928
|
+
urlPath = urlPath.replace(`{${"provider"}}`, encodeURIComponent(String(requestParameters['provider'])));
|
|
929
|
+
return {
|
|
930
|
+
path: urlPath,
|
|
931
|
+
method: 'OPTIONS',
|
|
932
|
+
headers: headerParameters,
|
|
933
|
+
query: queryParameters,
|
|
934
|
+
};
|
|
935
|
+
}
|
|
936
|
+
/**
|
|
937
|
+
* Enable CORS by returning correct headers
|
|
938
|
+
* User Identity Options
|
|
939
|
+
*/
|
|
940
|
+
async userIdentityOptionsRaw(requestParameters, initOverrides) {
|
|
941
|
+
const requestOptions = await this.userIdentityOptionsRequestOpts(requestParameters);
|
|
942
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
943
|
+
return new runtime.VoidApiResponse(response);
|
|
944
|
+
}
|
|
945
|
+
/**
|
|
946
|
+
* Enable CORS by returning correct headers
|
|
947
|
+
* User Identity Options
|
|
948
|
+
*/
|
|
949
|
+
async userIdentityOptions(requestParameters, initOverrides) {
|
|
950
|
+
await this.userIdentityOptionsRaw(requestParameters, initOverrides);
|
|
951
|
+
}
|
|
706
952
|
/**
|
|
707
953
|
* Creates request options for userInvitationsOptions without sending the request
|
|
708
954
|
*/
|
|
@@ -980,6 +1226,13 @@ exports.DeleteUserPermanentDeleteEnum = {
|
|
|
980
1226
|
True: 'true',
|
|
981
1227
|
False: 'false'
|
|
982
1228
|
};
|
|
1229
|
+
/**
|
|
1230
|
+
* @export
|
|
1231
|
+
*/
|
|
1232
|
+
exports.DeleteUserIdentityProviderEnum = {
|
|
1233
|
+
Google: 'Google',
|
|
1234
|
+
LinkedIn: 'LinkedIn'
|
|
1235
|
+
};
|
|
983
1236
|
/**
|
|
984
1237
|
* @export
|
|
985
1238
|
*/
|
|
@@ -988,4 +1241,11 @@ exports.ListUsersFilterStatusEnum = {
|
|
|
988
1241
|
Archived: 'archived',
|
|
989
1242
|
Pending: 'pending'
|
|
990
1243
|
};
|
|
1244
|
+
/**
|
|
1245
|
+
* @export
|
|
1246
|
+
*/
|
|
1247
|
+
exports.UserIdentityOptionsProviderEnum = {
|
|
1248
|
+
Google: 'Google',
|
|
1249
|
+
LinkedIn: 'LinkedIn'
|
|
1250
|
+
};
|
|
991
1251
|
//# sourceMappingURL=UsersApi.js.map
|