@caraer/client 2.0.423 → 2.0.425
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/.openapi-generator/FILES +1 -0
- package/api.ts +7 -1
- package/dist/api.d.ts +7 -1
- package/dist/esm/api.d.ts +7 -1
- package/docs/OAuthRegistrationRequest.md +26 -0
- package/docs/SettingField.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -140,6 +140,7 @@ docs/NotFoundErrorCauseStackTraceInner.md
|
|
|
140
140
|
docs/NotificationsApi.md
|
|
141
141
|
docs/Number.md
|
|
142
142
|
docs/NumberRange.md
|
|
143
|
+
docs/OAuthRegistrationRequest.md
|
|
143
144
|
docs/ObjectAccessGrantCandidatesDTO.md
|
|
144
145
|
docs/ObjectAccessGrantRequestDTO.md
|
|
145
146
|
docs/ObjectAccessGrantSectionDTO.md
|
package/api.ts
CHANGED
|
@@ -2900,6 +2900,12 @@ export interface Number extends PropertyFormat {
|
|
|
2900
2900
|
}
|
|
2901
2901
|
export interface NumberRange extends PropertyFormat {
|
|
2902
2902
|
}
|
|
2903
|
+
export interface OAuthRegistrationRequest {
|
|
2904
|
+
'redirect_uris'?: Array<string>;
|
|
2905
|
+
'client_name'?: string;
|
|
2906
|
+
'token_endpoint_auth_method'?: string;
|
|
2907
|
+
'application_type'?: string;
|
|
2908
|
+
}
|
|
2903
2909
|
/**
|
|
2904
2910
|
* Users, teams, and installed apps available for object access grants.
|
|
2905
2911
|
*/
|
|
@@ -4374,8 +4380,8 @@ export interface SettingField {
|
|
|
4374
4380
|
'hidden'?: boolean;
|
|
4375
4381
|
'disabled'?: boolean;
|
|
4376
4382
|
'options'?: Array<SettingOption>;
|
|
4377
|
-
'defaultValue'?: any;
|
|
4378
4383
|
'value'?: any;
|
|
4384
|
+
'defaultValue'?: any;
|
|
4379
4385
|
}
|
|
4380
4386
|
|
|
4381
4387
|
export const SettingFieldTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -2896,6 +2896,12 @@ export interface Number extends PropertyFormat {
|
|
|
2896
2896
|
}
|
|
2897
2897
|
export interface NumberRange extends PropertyFormat {
|
|
2898
2898
|
}
|
|
2899
|
+
export interface OAuthRegistrationRequest {
|
|
2900
|
+
'redirect_uris'?: Array<string>;
|
|
2901
|
+
'client_name'?: string;
|
|
2902
|
+
'token_endpoint_auth_method'?: string;
|
|
2903
|
+
'application_type'?: string;
|
|
2904
|
+
}
|
|
2899
2905
|
/**
|
|
2900
2906
|
* Users, teams, and installed apps available for object access grants.
|
|
2901
2907
|
*/
|
|
@@ -4397,8 +4403,8 @@ export interface SettingField {
|
|
|
4397
4403
|
'hidden'?: boolean;
|
|
4398
4404
|
'disabled'?: boolean;
|
|
4399
4405
|
'options'?: Array<SettingOption>;
|
|
4400
|
-
'defaultValue'?: any;
|
|
4401
4406
|
'value'?: any;
|
|
4407
|
+
'defaultValue'?: any;
|
|
4402
4408
|
}
|
|
4403
4409
|
export declare const SettingFieldTypeEnum: {
|
|
4404
4410
|
readonly String: "STRING";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2896,6 +2896,12 @@ export interface Number extends PropertyFormat {
|
|
|
2896
2896
|
}
|
|
2897
2897
|
export interface NumberRange extends PropertyFormat {
|
|
2898
2898
|
}
|
|
2899
|
+
export interface OAuthRegistrationRequest {
|
|
2900
|
+
'redirect_uris'?: Array<string>;
|
|
2901
|
+
'client_name'?: string;
|
|
2902
|
+
'token_endpoint_auth_method'?: string;
|
|
2903
|
+
'application_type'?: string;
|
|
2904
|
+
}
|
|
2899
2905
|
/**
|
|
2900
2906
|
* Users, teams, and installed apps available for object access grants.
|
|
2901
2907
|
*/
|
|
@@ -4397,8 +4403,8 @@ export interface SettingField {
|
|
|
4397
4403
|
'hidden'?: boolean;
|
|
4398
4404
|
'disabled'?: boolean;
|
|
4399
4405
|
'options'?: Array<SettingOption>;
|
|
4400
|
-
'defaultValue'?: any;
|
|
4401
4406
|
'value'?: any;
|
|
4407
|
+
'defaultValue'?: any;
|
|
4402
4408
|
}
|
|
4403
4409
|
export declare const SettingFieldTypeEnum: {
|
|
4404
4410
|
readonly String: "STRING";
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# OAuthRegistrationRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**redirect_uris** | **Array<string>** | | [optional] [default to undefined]
|
|
9
|
+
**client_name** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**token_endpoint_auth_method** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**application_type** | **string** | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { OAuthRegistrationRequest } from '@caraer/client';
|
|
17
|
+
|
|
18
|
+
const instance: OAuthRegistrationRequest = {
|
|
19
|
+
redirect_uris,
|
|
20
|
+
client_name,
|
|
21
|
+
token_endpoint_auth_method,
|
|
22
|
+
application_type,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/SettingField.md
CHANGED
|
@@ -14,8 +14,8 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**hidden** | **boolean** | | [optional] [default to undefined]
|
|
15
15
|
**disabled** | **boolean** | | [optional] [default to undefined]
|
|
16
16
|
**_options** | [**Array<SettingOption>**](SettingOption.md) | | [optional] [default to undefined]
|
|
17
|
-
**defaultValue** | **any** | | [optional] [default to undefined]
|
|
18
17
|
**value** | **any** | | [optional] [default to undefined]
|
|
18
|
+
**defaultValue** | **any** | | [optional] [default to undefined]
|
|
19
19
|
|
|
20
20
|
## Example
|
|
21
21
|
|
|
@@ -32,8 +32,8 @@ const instance: SettingField = {
|
|
|
32
32
|
hidden,
|
|
33
33
|
disabled,
|
|
34
34
|
_options,
|
|
35
|
-
defaultValue,
|
|
36
35
|
value,
|
|
36
|
+
defaultValue,
|
|
37
37
|
};
|
|
38
38
|
```
|
|
39
39
|
|