Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/sea-snake/google-sign-in-prototy…
Browse files Browse the repository at this point in the history
…pe' into sea-snake/google-sign-in-prototype
sea-snake committed Dec 16, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 4c977eb + c938c50 commit 691e903
Showing 2 changed files with 30 additions and 18 deletions.
26 changes: 16 additions & 10 deletions src/frontend/generated/internet_identity_idl.js
Original file line number Diff line number Diff line change
@@ -460,16 +460,16 @@ export const idlFactory = ({ IDL }) => {
[GetDelegationResponse],
['query'],
),
'get_jwt_delegation' : IDL.Func(
[IDL.Text, IDL.Vec(IDL.Nat8), FrontendHostname, SessionKey, Timestamp],
[GetDelegationResponse],
['query'],
),
'get_id_alias' : IDL.Func(
[GetIdAliasRequest],
[IDL.Variant({ 'Ok' : IdAliasCredentials, 'Err' : GetIdAliasError })],
['query'],
),
'get_jwt_delegation' : IDL.Func(
[IDL.Text, IDL.Vec(IDL.Nat8), FrontendHostname, SessionKey, Timestamp],
[GetDelegationResponse],
['query'],
),
'get_principal' : IDL.Func(
[UserNumber, FrontendHostname],
[IDL.Principal],
@@ -514,16 +514,22 @@ export const idlFactory = ({ IDL }) => {
[UserKey, Timestamp],
[],
),
'prepare_jwt_delegation' : IDL.Func(
[IDL.Text, IDL.Vec(IDL.Nat8), FrontendHostname, SessionKey, IDL.Opt(IDL.Nat64)],
[UserKey, Timestamp],
[],
),
'prepare_id_alias' : IDL.Func(
[PrepareIdAliasRequest],
[IDL.Variant({ 'Ok' : PreparedIdAlias, 'Err' : PrepareIdAliasError })],
[],
),
'prepare_jwt_delegation' : IDL.Func(
[
IDL.Text,
IDL.Vec(IDL.Nat8),
FrontendHostname,
SessionKey,
IDL.Opt(IDL.Nat64),
],
[UserKey, Timestamp],
[],
),
'register' : IDL.Func(
[DeviceData, ChallengeResult, IDL.Opt(IDL.Principal)],
[RegisterResponse],
22 changes: 14 additions & 8 deletions src/frontend/generated/internet_identity_types.d.ts
Original file line number Diff line number Diff line change
@@ -367,15 +367,15 @@ export interface _SERVICE {
[UserNumber, FrontendHostname, SessionKey, Timestamp],
GetDelegationResponse
>,
'get_jwt_delegation' : ActorMethod<
[string, Uint8Array, FrontendHostname, SessionKey, Timestamp],
GetDelegationResponse
>,
'get_id_alias' : ActorMethod<
[GetIdAliasRequest],
{ 'Ok' : IdAliasCredentials } |
{ 'Err' : GetIdAliasError }
>,
'get_jwt_delegation' : ActorMethod<
[string, Uint8Array | number[], FrontendHostname, SessionKey, Timestamp],
GetDelegationResponse
>,
'get_principal' : ActorMethod<[UserNumber, FrontendHostname], Principal>,
'http_request' : ActorMethod<[HttpRequest], HttpResponse>,
'http_request_update' : ActorMethod<[HttpRequest], HttpResponse>,
@@ -410,15 +410,21 @@ export interface _SERVICE {
[UserNumber, FrontendHostname, SessionKey, [] | [bigint]],
[UserKey, Timestamp]
>,
'prepare_jwt_delegation' : ActorMethod<
[string, Uint8Array, FrontendHostname, SessionKey, [] | [bigint]],
[UserKey, Timestamp]
>,
'prepare_id_alias' : ActorMethod<
[PrepareIdAliasRequest],
{ 'Ok' : PreparedIdAlias } |
{ 'Err' : PrepareIdAliasError }
>,
'prepare_jwt_delegation' : ActorMethod<
[
string,
Uint8Array | number[],
FrontendHostname,
SessionKey,
[] | [bigint],
],
[UserKey, Timestamp]
>,
'register' : ActorMethod<
[DeviceData, ChallengeResult, [] | [Principal]],
RegisterResponse

0 comments on commit 691e903

Please sign in to comment.