@google/earthengine 0.1.353 → 0.1.355
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/.tmp/BUILD +8 -0
- package/.tmp/METADATA +4 -4
- package/.tmp/VERSION_BUILD +2 -2
- package/build/browser.js +155 -143
- package/build/ee_api_js.js +531 -530
- package/build/ee_api_js_debug.js +133 -121
- package/build/ee_api_js_npm.js +155 -143
- package/build/main.js +155 -143
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/batch.js +25 -1
- package/src/data.js +44 -5
- package/src/encodable_batch.js +38 -1
package/.tmp/BUILD
CHANGED
|
@@ -489,6 +489,14 @@ Fileset(
|
|
|
489
489
|
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.353:public",
|
|
490
490
|
destdir = "0.1.353",
|
|
491
491
|
),
|
|
492
|
+
FilesetEntry(
|
|
493
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.354:public",
|
|
494
|
+
destdir = "0.1.354",
|
|
495
|
+
),
|
|
496
|
+
FilesetEntry(
|
|
497
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.355:public",
|
|
498
|
+
destdir = "0.1.355",
|
|
499
|
+
),
|
|
492
500
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
493
501
|
],
|
|
494
502
|
)
|
package/.tmp/METADATA
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Format: google3/devtools/metadata/metadata.proto (go/google3metadata)
|
|
2
2
|
|
|
3
|
-
name: "0.1.
|
|
3
|
+
name: "0.1.355"
|
|
4
4
|
description:
|
|
5
5
|
"Google Earth Engine is a cloud-based platform for planetary-scale "
|
|
6
6
|
"environmental data analysis. The Earth Engine JavaScript API allows "
|
|
@@ -12,10 +12,10 @@ third_party {
|
|
|
12
12
|
type: GIT
|
|
13
13
|
value: "https://github.com/google/earthengine-api.git"
|
|
14
14
|
}
|
|
15
|
-
version: "v0.1.
|
|
15
|
+
version: "v0.1.355"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2023
|
|
18
|
-
month:
|
|
19
|
-
day:
|
|
18
|
+
month: 6
|
|
19
|
+
day: 1
|
|
20
20
|
}
|
|
21
21
|
}
|
package/.tmp/VERSION_BUILD
CHANGED
|
@@ -9,7 +9,7 @@ load("//tools/build_defs/license:license.bzl", "license")
|
|
|
9
9
|
load("//tools/build_defs/build_test:build_test.bzl", "build_test")
|
|
10
10
|
|
|
11
11
|
package(
|
|
12
|
-
default_applicable_licenses = ["//third_party/hosted_libraries/libs/earthengine/0.1.
|
|
12
|
+
default_applicable_licenses = ["//third_party/hosted_libraries/libs/earthengine/0.1.355:license"],
|
|
13
13
|
default_visibility = [
|
|
14
14
|
"//third_party/hosted_libraries/libs/earthengine:__pkg__",
|
|
15
15
|
],
|
|
@@ -17,7 +17,7 @@ package(
|
|
|
17
17
|
|
|
18
18
|
license(
|
|
19
19
|
name = "license",
|
|
20
|
-
package_name = "0.1.
|
|
20
|
+
package_name = "0.1.355",
|
|
21
21
|
)
|
|
22
22
|
|
|
23
23
|
licenses(["notice"])
|