Skip to content

Commit 869a723

Browse files
authored
[Communication] - autorest - Follow up to automatic version incrementer (Azure#14249)
* [package] update the version number * [autorest] generate new autorest * [autorest] phone number generated * [autorest] phone number generated from autorest * [autorest] Update package version manually
1 parent 77621b2 commit 869a723

File tree

15 files changed

+29
-18
lines changed

15 files changed

+29
-18
lines changed

sdk/communication/communication-administration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
6868
"dependencies": {
6969
"@azure/abort-controller": "^1.0.0",
70-
"@azure/communication-common": "1.0.0-beta.6",
70+
"@azure/communication-common": "1.0.0-beta.7",
7171
"@azure/core-auth": "^1.2.0",
7272
"@azure/core-http": "^1.2.0",
7373
"@azure/core-lro": "^1.0.2",

sdk/communication/communication-chat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"types": "types/communication-chat.d.ts",
99
"scripts": {
1010
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
11-
"build:autorest": "autorest ./swagger/README.md --typescript --version=3.0.6267 --v3 --disable-async-iterators=true --package-version=1.0.0-beta.5 && rushx format",
11+
"build:autorest": "autorest ./swagger/README.md --typescript --version=3.0.6267 --v3 --disable-async-iterators=true --package-version=1.0.0-beta.6 && rushx format",
1212
"build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
1313
"build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
1414
"build:samples": "echo Skipped.",
@@ -65,7 +65,7 @@
6565
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
6666
"dependencies": {
6767
"@azure/abort-controller": "^1.0.0",
68-
"@azure/communication-common": "1.0.0-beta.6",
68+
"@azure/communication-common": "1.0.0-beta.7",
6969
"@azure/communication-signaling": "1.0.0-beta.2",
7070
"@azure/core-auth": "^1.2.0",
7171
"@azure/core-http": "^1.2.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "1.0.0-beta.5";
4+
export const SDK_VERSION: string = "1.0.0-beta.6";

sdk/communication/communication-identity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
6666
"dependencies": {
6767
"@azure/abort-controller": "^1.0.0",
68-
"@azure/communication-common": "1.0.0-beta.6",
68+
"@azure/communication-common": "1.0.0-beta.7",
6969
"@azure/core-auth": "^1.2.0",
7070
"@azure/core-http": "^1.2.0",
7171
"@azure/core-lro": "^1.0.2",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "1.0.0-beta.5";
4+
export const SDK_VERSION: string = "1.0.0-beta.6";

sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http";
1010
import { IdentityRestClientOptionalParams } from "./models";
1111

1212
const packageName = "azure-communication-identity";
13-
const packageVersion = "1.0.0-beta.5";
13+
const packageVersion = "1.0.0-beta.6";
1414

1515
export class IdentityRestClientContext extends coreHttp.ServiceClient {
1616
endpoint: string;

sdk/communication/communication-identity/src/generated/src/models/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ export type CommunicationIdentityTokenScope = "chat" | "voip";
104104
/**
105105
* Optional parameters.
106106
*/
107-
export interface CommunicationIdentityCreateOptionalParams extends coreHttp.OperationOptions {
107+
export interface CommunicationIdentityCreateOptionalParams
108+
extends coreHttp.OperationOptions {
108109
body?: CommunicationIdentityCreateRequest;
109110
}
110111

@@ -151,7 +152,8 @@ export type CommunicationIdentityIssueAccessTokenResponse = CommunicationIdentit
151152
/**
152153
* Optional parameters.
153154
*/
154-
export interface IdentityRestClientOptionalParams extends coreHttp.ServiceClientOptions {
155+
export interface IdentityRestClientOptionalParams
156+
extends coreHttp.ServiceClientOptions {
155157
/**
156158
* Api Version
157159
*/

sdk/communication/communication-identity/src/generated/src/operations/communicationIdentity.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ export class CommunicationIdentity {
5252
* @param id Identifier of the identity to be deleted.
5353
* @param options The options parameters.
5454
*/
55-
delete(id: string, options?: coreHttp.OperationOptions): Promise<coreHttp.RestResponse> {
55+
delete(
56+
id: string,
57+
options?: coreHttp.OperationOptions
58+
): Promise<coreHttp.RestResponse> {
5659
const operationOptions: coreHttp.RequestOptionsBase = coreHttp.operationOptionsToRequestOptionsBase(
5760
options || {}
5861
);

sdk/communication/communication-identity/swagger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
package-name: azure-communication-identity
99
override-client-name: IdentityRestClient
1010
description: Communication identity client
11-
package-version: 1.0.0-beta.5
11+
package-version: 1.0.0-beta.6
1212
generate-metadata: false
1313
license-header: MICROSOFT_MIT_NO_VERSION
1414
output-folder: ../src/generated

sdk/communication/communication-phone-numbers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"sideEffects": false,
6565
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
6666
"dependencies": {
67-
"@azure/communication-common": "1.0.0-beta.6",
67+
"@azure/communication-common": "1.0.0-beta.7",
6868
"@azure/abort-controller": "^1.0.0",
6969
"@azure/core-auth": "^1.2.0",
7070
"@azure/core-http": "^1.2.0",

0 commit comments

Comments
 (0)