@faable/auth-sdk 2.4.14 → 2.4.15
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/api/types.d.ts +2 -0
- package/package.json +1 -1
- package/spec/openapi.json +11 -1
package/dist/api/types.d.ts
CHANGED
|
@@ -3116,6 +3116,7 @@ export interface components {
|
|
|
3116
3116
|
};
|
|
3117
3117
|
/** @description AuthAccountUpdate */
|
|
3118
3118
|
AuthAccountUpdate: {
|
|
3119
|
+
name?: string;
|
|
3119
3120
|
logo_src?: string | null;
|
|
3120
3121
|
icon_src?: string | null;
|
|
3121
3122
|
callback_hostnames?: string[];
|
|
@@ -3464,6 +3465,7 @@ export interface operations {
|
|
|
3464
3465
|
requestBody: {
|
|
3465
3466
|
content: {
|
|
3466
3467
|
"application/json": {
|
|
3468
|
+
name?: string;
|
|
3467
3469
|
logo_src?: string | null;
|
|
3468
3470
|
icon_src?: string | null;
|
|
3469
3471
|
callback_hostnames?: string[];
|
package/package.json
CHANGED
package/spec/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "@faablecloud/auth",
|
|
5
5
|
"description": "Auth Platform made by Faable. Manage Users and Roles",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.23.0",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "private",
|
|
9
9
|
"url": "https://faable.com/docs/platform/privacy-policy"
|
|
@@ -3904,6 +3904,11 @@
|
|
|
3904
3904
|
"AuthAccountUpdate": {
|
|
3905
3905
|
"type": "object",
|
|
3906
3906
|
"properties": {
|
|
3907
|
+
"name": {
|
|
3908
|
+
"type": "string",
|
|
3909
|
+
"minLength": 1,
|
|
3910
|
+
"maxLength": 100
|
|
3911
|
+
},
|
|
3907
3912
|
"logo_src": {
|
|
3908
3913
|
"type": "string",
|
|
3909
3914
|
"nullable": true
|
|
@@ -4914,6 +4919,11 @@
|
|
|
4914
4919
|
"schema": {
|
|
4915
4920
|
"type": "object",
|
|
4916
4921
|
"properties": {
|
|
4922
|
+
"name": {
|
|
4923
|
+
"type": "string",
|
|
4924
|
+
"minLength": 1,
|
|
4925
|
+
"maxLength": 100
|
|
4926
|
+
},
|
|
4917
4927
|
"logo_src": {
|
|
4918
4928
|
"type": "string",
|
|
4919
4929
|
"nullable": true
|