@caraer/client 2.0.424 → 2.0.426

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.
@@ -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
@@ -2097,9 +2097,9 @@ export const EventRsvpRequestScopeEnum = {
2097
2097
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2098
2098
 
2099
2099
  export interface ExistingWidgetSummary {
2100
+ 'xproperty'?: string;
2100
2101
  'ymetric'?: string;
2101
2102
  'yproperty'?: string;
2102
- 'xproperty'?: string;
2103
2103
  'title'?: string;
2104
2104
  'chartType'?: string;
2105
2105
  'xProperty'?: string;
@@ -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
  */
package/dist/api.d.ts CHANGED
@@ -2076,9 +2076,9 @@ export declare const EventRsvpRequestScopeEnum: {
2076
2076
  };
2077
2077
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2078
2078
  export interface ExistingWidgetSummary {
2079
+ 'xproperty'?: string;
2079
2080
  'ymetric'?: string;
2080
2081
  'yproperty'?: string;
2081
- 'xproperty'?: string;
2082
2082
  'title'?: string;
2083
2083
  'chartType'?: string;
2084
2084
  'xProperty'?: string;
@@ -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
  */
package/dist/esm/api.d.ts CHANGED
@@ -2076,9 +2076,9 @@ export declare const EventRsvpRequestScopeEnum: {
2076
2076
  };
2077
2077
  export type EventRsvpRequestScopeEnum = typeof EventRsvpRequestScopeEnum[keyof typeof EventRsvpRequestScopeEnum];
2078
2078
  export interface ExistingWidgetSummary {
2079
+ 'xproperty'?: string;
2079
2080
  'ymetric'?: string;
2080
2081
  'yproperty'?: string;
2081
- 'xproperty'?: string;
2082
2082
  'title'?: string;
2083
2083
  'chartType'?: string;
2084
2084
  'xProperty'?: string;
@@ -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
  */
@@ -5,9 +5,9 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
+ **xproperty** | **string** | | [optional] [default to undefined]
8
9
  **ymetric** | **string** | | [optional] [default to undefined]
9
10
  **yproperty** | **string** | | [optional] [default to undefined]
10
- **xproperty** | **string** | | [optional] [default to undefined]
11
11
  **title** | **string** | | [optional] [default to undefined]
12
12
  **chartType** | **string** | | [optional] [default to undefined]
13
13
  **xProperty** | **string** | | [optional] [default to undefined]
@@ -20,9 +20,9 @@ Name | Type | Description | Notes
20
20
  import { ExistingWidgetSummary } from '@caraer/client';
21
21
 
22
22
  const instance: ExistingWidgetSummary = {
23
+ xproperty,
23
24
  ymetric,
24
25
  yproperty,
25
- xproperty,
26
26
  title,
27
27
  chartType,
28
28
  xProperty,
@@ -0,0 +1,26 @@
1
+ # OAuthRegistrationRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **redirect_uris** | **Array&lt;string&gt;** | | [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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caraer/client",
3
- "version": "2.0.424",
3
+ "version": "2.0.426",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {