Skip to content

Commit 08d9dd3

Browse files
committed
rename for typo
1 parent d9c0095 commit 08d9dd3

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ docs/RbmMessageMedia.md
151151
docs/RbmOpenUrlEnum.md
152152
docs/RbmStandaloneCard.md
153153
docs/RbmSuggestionResponse.md
154-
docs/RbmVebViewEnum.md
154+
docs/RbmWebViewEnum.md
155155
docs/RecordingAvailableCallback.md
156156
docs/RecordingCompleteCallback.md
157157
docs/RecordingStateEnum.md
@@ -334,7 +334,7 @@ models/rbm-message-media.ts
334334
models/rbm-open-url-enum.ts
335335
models/rbm-standalone-card.ts
336336
models/rbm-suggestion-response.ts
337-
models/rbm-veb-view-enum.ts
337+
models/rbm-web-view-enum.ts
338338
models/recording-available-callback.ts
339339
models/recording-complete-callback.ts
340340
models/recording-state-enum.ts

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ Class | Method | HTTP request | Description
289289
- [RbmOpenUrlEnum](docs/RbmOpenUrlEnum.md)
290290
- [RbmStandaloneCard](docs/RbmStandaloneCard.md)
291291
- [RbmSuggestionResponse](docs/RbmSuggestionResponse.md)
292-
- [RbmVebViewEnum](docs/RbmVebViewEnum.md)
292+
- [RbmWebViewEnum](docs/RbmWebViewEnum.md)
293293
- [RecordingAvailableCallback](docs/RecordingAvailableCallback.md)
294294
- [RecordingCompleteCallback](docs/RecordingCompleteCallback.md)
295295
- [RecordingStateEnum](docs/RecordingStateEnum.md)

bandwidth.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2392,7 +2392,7 @@ components:
23922392
- BROWSER
23932393
- WEBVIEW
23942394
example: WEBVIEW
2395-
rbmVebViewEnum:
2395+
rbmWebViewEnum:
23962396
type: string
23972397
description: >-
23982398
Defines the layout of the WebView on a mobile device. It must be defined
@@ -2514,7 +2514,7 @@ components:
25142514
application:
25152515
$ref: '#/components/schemas/rbmOpenUrlEnum'
25162516
webviewViewMode:
2517-
$ref: '#/components/schemas/rbmVebViewEnum'
2517+
$ref: '#/components/schemas/rbmWebViewEnum'
25182518
required:
25192519
- url
25202520
multiChannelFullActions:

docs/MultiChannelAction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Name | Type | Description | Notes
1818
**description** | **string** | The description of the event. | [optional] [default to undefined]
1919
**url** | **string** | The URL to open in browser. | [default to undefined]
2020
**application** | [**RbmOpenUrlEnum**](RbmOpenUrlEnum.md) | | [optional] [default to undefined]
21-
**webviewViewMode** | [**RbmVebViewEnum**](RbmVebViewEnum.md) | | [optional] [default to undefined]
21+
**webviewViewMode** | [**RbmWebViewEnum**](RbmWebViewEnum.md) | | [optional] [default to undefined]
2222

2323
## Example
2424

docs/RbmActionOpenUrl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**postbackData** | **string** | Base64 payload the customer receives when the reply is clicked. | [default to undefined]
1111
**url** | **string** | The URL to open in browser. | [default to undefined]
1212
**application** | [**RbmOpenUrlEnum**](RbmOpenUrlEnum.md) | | [optional] [default to undefined]
13-
**webviewViewMode** | [**RbmVebViewEnum**](RbmVebViewEnum.md) | | [optional] [default to undefined]
13+
**webviewViewMode** | [**RbmWebViewEnum**](RbmWebViewEnum.md) | | [optional] [default to undefined]
1414

1515
## Example
1616

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RbmVebViewEnum
1+
# RbmWebViewEnum
22

33
Defines the layout of the WebView on a mobile device. It must be defined when application is set to `WEBVIEW` - `FULL` WebView takes the full screen. - `HALF` WebView takes half of the screen. - `TALL` WebView takes three-quarters of the screen.
44

models/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export * from './rbm-message-media';
127127
export * from './rbm-open-url-enum';
128128
export * from './rbm-standalone-card';
129129
export * from './rbm-suggestion-response';
130-
export * from './rbm-veb-view-enum';
130+
export * from './rbm-web-view-enum';
131131
export * from './recording-available-callback';
132132
export * from './recording-complete-callback';
133133
export * from './recording-state-enum';

models/multi-channel-action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import type { RbmActionViewLocation } from './rbm-action-view-location';
3636
import type { RbmOpenUrlEnum } from './rbm-open-url-enum';
3737
// May contain unused imports in some cases
3838
// @ts-ignore
39-
import type { RbmVebViewEnum } from './rbm-veb-view-enum';
39+
import type { RbmWebViewEnum } from './rbm-web-view-enum';
4040

4141
export interface MultiChannelAction {
4242
'type': RbmActionTypeEnum;
@@ -85,7 +85,7 @@ export interface MultiChannelAction {
8585
*/
8686
'url': string;
8787
'application'?: RbmOpenUrlEnum;
88-
'webviewViewMode'?: RbmVebViewEnum;
88+
'webviewViewMode'?: RbmWebViewEnum;
8989
}
9090

9191

models/rbm-action-open-url.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import type { RbmActionTypeEnum } from './rbm-action-type-enum';
2424
import type { RbmOpenUrlEnum } from './rbm-open-url-enum';
2525
// May contain unused imports in some cases
2626
// @ts-ignore
27-
import type { RbmVebViewEnum } from './rbm-veb-view-enum';
27+
import type { RbmWebViewEnum } from './rbm-web-view-enum';
2828

2929
/**
3030
* @type RbmActionOpenUrl
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
* Defines the layout of the WebView on a mobile device. It must be defined when application is set to `WEBVIEW` - `FULL` WebView takes the full screen. - `HALF` WebView takes half of the screen. - `TALL` WebView takes three-quarters of the screen.
1919
*/
2020

21-
export const RbmVebViewEnum = {
21+
export const RbmWebViewEnum = {
2222
Full: 'FULL',
2323
Half: 'HALF',
2424
Tall: 'TALL'
2525
} as const;
2626

27-
export type RbmVebViewEnum = typeof RbmVebViewEnum[keyof typeof RbmVebViewEnum];
27+
export type RbmWebViewEnum = typeof RbmWebViewEnum[keyof typeof RbmWebViewEnum];
2828

2929

3030

0 commit comments

Comments
 (0)