@delopay/sdk 0.127.0 → 0.128.0
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/{chunk-D44FJRXS.js → chunk-PKPIWKB2.js} +20 -2
- package/dist/{chunk-D44FJRXS.js.map → chunk-PKPIWKB2.js.map} +1 -1
- package/dist/index.cjs +19 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +37 -3
- package/dist/index.d.ts +37 -3
- package/dist/index.js +1 -1
- package/dist/internal.cjs +19 -1
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/internal.js +1 -1
- package/package.json +1 -1
|
@@ -3199,6 +3199,19 @@ var Users = class {
|
|
|
3199
3199
|
async acceptInvitation(params) {
|
|
3200
3200
|
return this.request("POST", "/user/employees/invite/accept", { body: params });
|
|
3201
3201
|
}
|
|
3202
|
+
/**
|
|
3203
|
+
* Accept invitations before a session exists.
|
|
3204
|
+
*
|
|
3205
|
+
* Sign-in issues a `token_type: "accept_invite"` step token instead of a
|
|
3206
|
+
* session when the caller has no active role yet — every role is still an
|
|
3207
|
+
* unaccepted invitation. With that token set via `setJwtToken`, pass the
|
|
3208
|
+
* entities from `listInvitations` here; the response is the next step of
|
|
3209
|
+
* the sign-in flow (`user_info` for the session, or `force_set_password`
|
|
3210
|
+
* first). Rejected when none of the entities carries a pending invitation.
|
|
3211
|
+
*/
|
|
3212
|
+
async acceptInvitationsPreAuth(params) {
|
|
3213
|
+
return this.request("POST", "/user/employees/invite/accept/pre-auth", { body: params });
|
|
3214
|
+
}
|
|
3202
3215
|
/**
|
|
3203
3216
|
* Accept an invitation via the email-link flow.
|
|
3204
3217
|
*
|
|
@@ -3293,7 +3306,12 @@ var Users = class {
|
|
|
3293
3306
|
async transferKey(params) {
|
|
3294
3307
|
return this.request("POST", "/user/key/transfer", { body: params });
|
|
3295
3308
|
}
|
|
3296
|
-
/**
|
|
3309
|
+
/**
|
|
3310
|
+
* Invitations still waiting on the caller. `GET /user/list/invitation`
|
|
3311
|
+
*
|
|
3312
|
+
* Accepts an `accept_invite` step token as well as a session JWT, so it
|
|
3313
|
+
* can feed `acceptInvitationsPreAuth` during sign-in.
|
|
3314
|
+
*/
|
|
3297
3315
|
async listInvitations() {
|
|
3298
3316
|
return this.request("GET", "/user/list/invitation");
|
|
3299
3317
|
}
|
|
@@ -7583,4 +7601,4 @@ export {
|
|
|
7583
7601
|
decodeNativePanes,
|
|
7584
7602
|
encodeNativePanes
|
|
7585
7603
|
};
|
|
7586
|
-
//# sourceMappingURL=chunk-
|
|
7604
|
+
//# sourceMappingURL=chunk-PKPIWKB2.js.map
|