Skip to content

Commit a22ff71

Browse files
[LUM-766] SDK v0.47 Integration (#58)
* Bump dependencies, fix code accordingly * Bump deps * Docs regenerate * Code format * Bump version * TM37Client * Final version * Fix linting whitespace * Update lint dependencies * Add new node version and engine --------- Co-authored-by: RLM <[email protected]>
1 parent eecf5e1 commit a22ff71

File tree

227 files changed

+30707
-5802
lines changed

Some content is hidden

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

227 files changed

+30707
-5802
lines changed

.github/workflows/pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [14.x]
17+
node-version: [18.x]
1818

1919
env:
2020
CLOUDSDK_CORE_PROJECT: dev

docs/lib/README.md

-35
This file was deleted.

docs/lib/assets/highlight.css

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
:root {
2+
--light-code-background: #FFFFFF;
3+
--dark-code-background: #1E1E1E;
4+
}
5+
6+
@media (prefers-color-scheme: light) { :root {
7+
--code-background: var(--light-code-background);
8+
} }
9+
10+
@media (prefers-color-scheme: dark) { :root {
11+
--code-background: var(--dark-code-background);
12+
} }
13+
14+
:root[data-theme='light'] {
15+
--code-background: var(--light-code-background);
16+
}
17+
18+
:root[data-theme='dark'] {
19+
--code-background: var(--dark-code-background);
20+
}
21+
22+
pre, code { background: var(--code-background); }

docs/lib/assets/main.js

+58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/lib/assets/search.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)