Skip to content

Commit 6926a62

Browse files
committed
resynced core with mono
1 parent fd9102e commit 6926a62

File tree

6 files changed

+440
-552
lines changed

6 files changed

+440
-552
lines changed

packages/core/src/__inputs__/auth_proxy.swagger.json

Lines changed: 23 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"/v1/account": {
1616
"post": {
1717
"summary": "Get Account",
18-
"description": "Return sub-organization ID associated with a given contact or public identifier.",
18+
"description": "Return organization id associated with a given phone number, email, public key, credential ID or OIDC token.",
1919
"operationId": "AuthProxyService_GetAccount",
2020
"responses": {
2121
"200": {
@@ -41,7 +41,7 @@
4141
}
4242
}
4343
],
44-
"tags": ["Users"]
44+
"tags": ["Accounts"]
4545
}
4646
},
4747
"/v1/oauth_login": {
@@ -111,7 +111,7 @@
111111
"/v1/otp_login": {
112112
"post": {
113113
"summary": "OTP Login",
114-
"description": "Login using a verified OTP token and public key.",
114+
"description": "Login using a verification token and public key.",
115115
"operationId": "AuthProxyService_OtpLogin",
116116
"responses": {
117117
"200": {
@@ -143,7 +143,7 @@
143143
"/v1/otp_verify": {
144144
"post": {
145145
"summary": "Verify OTP",
146-
"description": "Verify the OTP code previously sent to the user's contact.",
146+
"description": "Verify the OTP code previously sent to the user's contact and return a verification token.",
147147
"operationId": "AuthProxyService_VerifyOtp",
148148
"responses": {
149149
"200": {
@@ -175,7 +175,7 @@
175175
"/v1/signup": {
176176
"post": {
177177
"summary": "Signup",
178-
"description": "Create a new sub-organization and user via the proxy API.",
178+
"description": "Onboard a new user.",
179179
"operationId": "AuthProxyService_Signup",
180180
"responses": {
181181
"200": {
@@ -233,7 +233,7 @@
233233
}
234234
}
235235
],
236-
"tags": ["Organizations"]
236+
"tags": ["Wallet Kit"]
237237
}
238238
}
239239
},
@@ -428,51 +428,28 @@
428428
"v1GetWalletKitConfigResponse": {
429429
"type": "object",
430430
"properties": {
431-
"facebookEnabled": {
432-
"type": "boolean"
433-
},
434-
"googleEnabled": {
435-
"type": "boolean"
436-
},
437-
"appleEnabled": {
438-
"type": "boolean"
439-
},
440-
"emailEnabled": {
441-
"type": "boolean"
442-
},
443-
"smsEnabled": {
444-
"type": "boolean"
445-
},
446-
"passkeyEnabled": {
447-
"type": "boolean"
448-
},
449-
"walletEnabled": {
450-
"type": "boolean"
451-
},
452-
"openOAuthInPage": {
453-
"type": "boolean"
454-
},
455-
"passkeySessionExpirationSeconds": {
456-
"type": "string"
431+
"enabledProviders": {
432+
"type": "array",
433+
"items": {
434+
"type": "string"
435+
},
436+
"description": "List of enabled authentication providers (e.g., 'facebook', 'google', 'apple', 'email', 'sms', 'passkey', 'wallet')",
437+
"title": "Enabled Providers"
457438
},
458-
"walletSessionExpirationSeconds": {
459-
"type": "string"
439+
"sessionExpirationSeconds": {
440+
"type": "string",
441+
"description": "Session expiration duration in seconds",
442+
"title": "Session Expiration"
460443
},
461444
"organizationId": {
462-
"type": "string"
445+
"type": "string",
446+
"description": "The organization ID this configuration applies to",
447+
"title": "Organization ID"
463448
}
464449
},
465450
"required": [
466-
"facebookEnabled",
467-
"googleEnabled",
468-
"appleEnabled",
469-
"emailEnabled",
470-
"smsEnabled",
471-
"passkeyEnabled",
472-
"walletEnabled",
473-
"openOAuthInPage",
474-
"passkeySessionExpirationSeconds",
475-
"walletSessionExpirationSeconds",
451+
"enabledProviders",
452+
"sessionExpirationSeconds",
476453
"organizationId"
477454
]
478455
},
@@ -589,7 +566,7 @@
589566
"userName": {
590567
"type": "string"
591568
},
592-
"subOrgName": {
569+
"organizationName": {
593570
"type": "string"
594571
},
595572
"verificationToken": {

packages/core/src/__inputs__/public_api.swagger.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7145,6 +7145,10 @@
71457145
"type": "string",
71467146
"description": "Unique identifier for a given wallet. If not provided, all accounts for the organization will be returned."
71477147
},
7148+
"includeWalletDetails": {
7149+
"type": "boolean",
7150+
"description": "Optional flag to specify if the wallet details should be included in the response. Default = false."
7151+
},
71487152
"paginationOptions": {
71497153
"$ref": "#/definitions/v1Pagination",
71507154
"description": "Parameters used for cursor-based pagination."
@@ -8702,7 +8706,8 @@
87028706
"enum": [
87038707
"PAYLOAD_ENCODING_HEXADECIMAL",
87048708
"PAYLOAD_ENCODING_TEXT_UTF8",
8705-
"PAYLOAD_ENCODING_EIP712"
8709+
"PAYLOAD_ENCODING_EIP712",
8710+
"PAYLOAD_ENCODING_EIP7702_AUTHORIZATION"
87068711
]
87078712
},
87088713
"v1Policy": {
@@ -10818,6 +10823,10 @@
1081810823
"publicKey": {
1081910824
"type": "string",
1082010825
"description": "The public component of this wallet account's underlying cryptographic key pair."
10826+
},
10827+
"walletDetails": {
10828+
"$ref": "#/definitions/v1Wallet",
10829+
"description": "Wallet details for this account. This is only present when include_wallet_details=true."
1082110830
}
1082210831
},
1082310832
"required": [

0 commit comments

Comments
 (0)