Skip to content

Commit 03585e3

Browse files
committed
biome format + lint
1 parent e81c703 commit 03585e3

578 files changed

Lines changed: 1346 additions & 1185 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"prepublishOnly": "yarn reset && yarn compile && yarn test",
1717
"test": "yarn workspace @rc-ex/test run vitest",
1818
"upgrade-all": "yarn-upgrade-all -W && yarn workspaces run yarn-upgrade-all && yarn install",
19-
"lint": "biome lint --write .",
20-
"format": "biome format --write .",
21-
"check": "biome check --write ."
19+
"format-lint": "biome check --write ."
2220
},
2321
"devDependencies": {
2422
"@biomejs/biome": "^2.4.10",

packages/core/src/Rest.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import type { AxiosInstance } from "axios";
22
import axios from "axios";
33
import qs from "qs";
4-
4+
import type TokenInfo from "./definitions/TokenInfo.js";
55
import { boundary } from "./FormData.js";
66
import RestException from "./RestException.js";
7-
import type TokenInfo from "./definitions/TokenInfo.js";
87
import type {
98
RestMethod,
109
RestOptions,

packages/core/src/Utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import FormData from "./FormData.js";
21
import type Attachment from "./definitions/Attachment.js";
2+
import FormData from "./FormData.js";
33
import type { RestResponse } from "./types.js";
44

55
class Utils {

packages/core/src/definitions/AIInsights.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import type TranscriptInsightUnit from "./TranscriptInsightUnit.js";
2-
import type SummaryInsightUnit from "./SummaryInsightUnit.js";
3-
import type HighlightsInsightUnit from "./HighlightsInsightUnit.js";
4-
import type NextStepsInsightUnit from "./NextStepsInsightUnit.js";
5-
import type BulletedSummaryInsightUnit from "./BulletedSummaryInsightUnit.js";
61
import type AIScoreInsightUnit from "./AIScoreInsightUnit.js";
2+
import type BulletedSummaryInsightUnit from "./BulletedSummaryInsightUnit.js";
73
import type CallNotesInsightUnit from "./CallNotesInsightUnit.js";
4+
import type HighlightsInsightUnit from "./HighlightsInsightUnit.js";
5+
import type NextStepsInsightUnit from "./NextStepsInsightUnit.js";
86
import type SentimentInsightUnit from "./SentimentInsightUnit.js";
7+
import type SummaryInsightUnit from "./SummaryInsightUnit.js";
8+
import type TranscriptInsightUnit from "./TranscriptInsightUnit.js";
99

1010
interface AIInsights {
1111
/**

packages/core/src/definitions/AccountDeviceUpdate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import type EmergencyServiceAddressResourceRequest from "./EmergencyServiceAddressResourceRequest.js";
21
import type DeviceEmergencyInfo from "./DeviceEmergencyInfo.js";
32
import type DeviceUpdateExtensionInfo from "./DeviceUpdateExtensionInfo.js";
43
import type DeviceUpdatePhoneLinesInfo from "./DeviceUpdatePhoneLinesInfo.js";
4+
import type EmergencyServiceAddressResourceRequest from "./EmergencyServiceAddressResourceRequest.js";
55

66
interface AccountDeviceUpdate {
77
/**

packages/core/src/definitions/AccountHistoryPublicRecord.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import type AccountHistoryRecordPublicDetails from "./AccountHistoryRecordPublicDetails.js";
12
import type AccountHistoryRecordPublicInitiator from "./AccountHistoryRecordPublicInitiator.js";
23
import type AccountHistoryRecordTarget from "./AccountHistoryRecordTarget.js";
3-
import type AccountHistoryRecordPublicDetails from "./AccountHistoryRecordPublicDetails.js";
44

55
interface AccountHistoryPublicRecord {
66
/**

packages/core/src/definitions/AccountHistorySearchPublicResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type AccountHistoryPublicRecord from "./AccountHistoryPublicRecord.js";
21
import type AccountHistoryPaging from "./AccountHistoryPaging.js";
2+
import type AccountHistoryPublicRecord from "./AccountHistoryPublicRecord.js";
33

44
interface AccountHistorySearchPublicResponse {
55
/**

packages/core/src/definitions/AccountPhoneNumberInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type ContactCenterProvider from "./ContactCenterProvider.js";
21
import type AccountPhoneNumberInfoExtension from "./AccountPhoneNumberInfoExtension.js";
2+
import type ContactCenterProvider from "./ContactCenterProvider.js";
33

44
interface AccountPhoneNumberInfo {
55
/**

packages/core/src/definitions/AccountPhoneNumbers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type CompanyPhoneNumberInfo from "./CompanyPhoneNumberInfo.js";
2-
import type PageNavigationModel from "./PageNavigationModel.js";
32
import type EnumeratedPagingModel from "./EnumeratedPagingModel.js";
3+
import type PageNavigationModel from "./PageNavigationModel.js";
44

55
interface AccountPhoneNumbers {
66
/**

packages/core/src/definitions/AccountRegionalSettingRequest.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type AccountCountryInfoRequest from "./AccountCountryInfoRequest.js";
2-
import type AccountTimezoneInfoRequest from "./AccountTimezoneInfoRequest.js";
3-
import type AccountLanguageInfoRequest from "./AccountLanguageInfoRequest.js";
4-
import type AccountGreetingLanguageInfoRequest from "./AccountGreetingLanguageInfoRequest.js";
52
import type AccountFormattingLocaleInfoRequest from "./AccountFormattingLocaleInfoRequest.js";
3+
import type AccountGreetingLanguageInfoRequest from "./AccountGreetingLanguageInfoRequest.js";
4+
import type AccountLanguageInfoRequest from "./AccountLanguageInfoRequest.js";
5+
import type AccountTimezoneInfoRequest from "./AccountTimezoneInfoRequest.js";
66

77
interface AccountRegionalSettingRequest {
88
/**

0 commit comments

Comments
 (0)