google-spreadsheet 4.0.3 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/lib/types/sheets-types.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -378,7 +378,7 @@ type DataFilter = A1Range | GridRange;
|
|
|
378
378
|
type DataFilterWithoutWorksheetId = A1Range | GridRangeWithoutWorksheetId;
|
|
379
379
|
/** @see https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#colorstyle */
|
|
380
380
|
type ColorStyle = {
|
|
381
|
-
|
|
381
|
+
rgbColor: Color;
|
|
382
382
|
} | {
|
|
383
383
|
themeColor: ThemeColorType;
|
|
384
384
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "google-spreadsheet",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "Google Sheets API -- simple interface to read/write data and manage sheets",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"google spreadsheets",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"eslint-plugin-import": "^2.27.5",
|
|
83
83
|
"eslint-plugin-jest": "^27.2.1",
|
|
84
84
|
"eslint-plugin-no-floating-promise": "^1.0.2",
|
|
85
|
-
"google-auth-library": "^
|
|
85
|
+
"google-auth-library": "^9.2.0",
|
|
86
86
|
"jest": "^29.5.0",
|
|
87
87
|
"jest-junit": "^16.0.0",
|
|
88
88
|
"release-it": "^15.11.0",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"unbuild": "^1.2.1"
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
|
-
"google-auth-library": "^8.8.0"
|
|
94
|
+
"google-auth-library": "^8.8.0 || ^9.0.0"
|
|
95
95
|
},
|
|
96
96
|
"peerDependenciesMeta": {
|
|
97
97
|
"google-auth-library": {
|
|
@@ -415,7 +415,7 @@ export type DataFilterWithoutWorksheetId = A1Range | GridRangeWithoutWorksheetId
|
|
|
415
415
|
|
|
416
416
|
|
|
417
417
|
/** @see https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#colorstyle */
|
|
418
|
-
export type ColorStyle = {
|
|
418
|
+
export type ColorStyle = { rgbColor: Color } | { themeColor: ThemeColorType };
|
|
419
419
|
/** @see https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#Color */
|
|
420
420
|
export type Color = {
|
|
421
421
|
red: number,
|