Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

Commit 6e06f96

Browse files
authored
Auto-merge PR based on merge event
Auto-merging PR based on merge event from upstream repository
2 parents f903829 + 1cfbc7a commit 6e06f96

File tree

5 files changed

+427
-0
lines changed

5 files changed

+427
-0
lines changed

site/custom.config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"numbersSpecLink": "https://github.com/Bandwidth/api-docs/blob/main/site/specs/numbers.yml",
33
"phoneNumberLookupSpecLink": "https://github.com/Bandwidth/api-docs/blob/main/site/specs/phone-number-lookup.yml",
44
"voiceSpecLink": "https://github.com/Bandwidth/api-docs/blob/main/site/specs/voice.yml",
5+
"activeCallInfoSpecLink": "https://github.com/Bandwidth/api-docs/blob/main/site/specs/active-call-info.yml",
56
"messagingSpecLink": "https://github.com/Bandwidth/api-docs/blob/main/site/specs/messaging.yml",
67
"messagingInternationalSpecLink": "https://github.com/Bandwidth/api-docs/blob/main/site/specs/messagingInternational.json",
78
"webRtcSpecLink": "https://github.com/Bandwidth/api-docs/blob/main/site/specs/webrtc.yml",

site/docusaurus.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const phoneNumberLookupSpec = fs.readFileSync(
1212
"utf-8"
1313
);
1414
const voiceSpec = fs.readFileSync("./specs/voice.yml", "utf-8");
15+
const activeCallInfoSpec = fs.readFileSync('./specs/active-call-info.yml', 'utf-8');
1516
const messagingSpec = fs.readFileSync("./specs/messaging.yml", "utf-8");
1617
const webRtcSpec = fs.readFileSync("./specs/webrtc.yml", "utf-8");
1718
const multiFactorAuthSpec = fs.readFileSync(
@@ -170,6 +171,8 @@ module.exports = {
170171
phoneNumberLookupSpecLink: `${customConfig.phoneNumberLookupSpecLink}`,
171172
voiceSpec: YAML.parse(voiceSpec),
172173
voiceSpecLink: `${customConfig.voiceSpecLink}`,
174+
activeCallInfoSpec: YAML.parse(activeCallInfoSpec),
175+
activeCallInfoSpecLink: `${customConfig.activeCallInfoSpecLink}`,
173176
messagingSpec: YAML.parse(messagingSpec),
174177
messagingSpecLink: `${customConfig.messagingSpecLink}`,
175178
messagingInternationalSpec: JSON.parse(messagingInternationalSpec),

0 commit comments

Comments
 (0)