@arcgis/core-adapter 4.32.0-next.47 → 4.32.0-next.48
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/.turbo/turbo-build.log +4 -4
- package/package.json +1 -1
- package/support/arcgis.d.ts +111 -12
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,11 +6,11 @@ CLI Target: es2020
|
|
|
6
6
|
CLI Cleaning output folder
|
|
7
7
|
ESM Build start
|
|
8
8
|
CJS Build start
|
|
9
|
-
DTS Build start
|
|
10
9
|
CJS dist/index.cjs 626.78 KB
|
|
11
|
-
CJS ⚡️ Build success in
|
|
10
|
+
CJS ⚡️ Build success in 2190ms
|
|
12
11
|
ESM dist/index.js 484.95 KB
|
|
13
|
-
ESM ⚡️ Build success in
|
|
14
|
-
DTS
|
|
12
|
+
ESM ⚡️ Build success in 2260ms
|
|
13
|
+
DTS Build start
|
|
14
|
+
DTS ⚡️ Build success in 23210ms
|
|
15
15
|
DTS dist/index.d.ts 254.37 KB
|
|
16
16
|
DTS dist/index.d.cts 254.37 KB
|
package/package.json
CHANGED
package/support/arcgis.d.ts
CHANGED
|
@@ -64986,7 +64986,7 @@ declare namespace __esri {
|
|
|
64986
64986
|
where?: QueryMixinProperties["where"];
|
|
64987
64987
|
}
|
|
64988
64988
|
|
|
64989
|
-
export interface AutoIntervalBinParameters extends Accessor, JSONSupport {}
|
|
64989
|
+
export interface AutoIntervalBinParameters extends Accessor, JSONSupport, BinParametersBase {}
|
|
64990
64990
|
|
|
64991
64991
|
export class AutoIntervalBinParameters {
|
|
64992
64992
|
/**
|
|
@@ -65006,11 +65006,17 @@ declare namespace __esri {
|
|
|
65006
65006
|
*/
|
|
65007
65007
|
end: number | Date;
|
|
65008
65008
|
/**
|
|
65009
|
-
* The field name used to
|
|
65009
|
+
* The field name used to calculate the bins.
|
|
65010
65010
|
*
|
|
65011
65011
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#field Read more...}
|
|
65012
65012
|
*/
|
|
65013
|
-
field:
|
|
65013
|
+
declare field: BinParametersBase["field"];
|
|
65014
|
+
/**
|
|
65015
|
+
* The first day of the week.
|
|
65016
|
+
*
|
|
65017
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#firstDayOfWeek Read more...}
|
|
65018
|
+
*/
|
|
65019
|
+
declare firstDayOfWeek: BinParametersBase["firstDayOfWeek"];
|
|
65014
65020
|
/**
|
|
65015
65021
|
* The number of bins to generate.
|
|
65016
65022
|
*
|
|
@@ -65053,7 +65059,7 @@ declare namespace __esri {
|
|
|
65053
65059
|
static fromJSON(json: any): AutoIntervalBinParameters;
|
|
65054
65060
|
}
|
|
65055
65061
|
|
|
65056
|
-
interface AutoIntervalBinParametersProperties {
|
|
65062
|
+
interface AutoIntervalBinParametersProperties extends BinParametersBaseProperties {
|
|
65057
65063
|
/**
|
|
65058
65064
|
* The end value of bins to generate.
|
|
65059
65065
|
*
|
|
@@ -65061,11 +65067,17 @@ declare namespace __esri {
|
|
|
65061
65067
|
*/
|
|
65062
65068
|
end?: number | DateProperties;
|
|
65063
65069
|
/**
|
|
65064
|
-
* The field name used to
|
|
65070
|
+
* The field name used to calculate the bins.
|
|
65065
65071
|
*
|
|
65066
65072
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#field Read more...}
|
|
65067
65073
|
*/
|
|
65068
|
-
field?:
|
|
65074
|
+
field?: BinParametersBaseProperties["field"];
|
|
65075
|
+
/**
|
|
65076
|
+
* The first day of the week.
|
|
65077
|
+
*
|
|
65078
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#firstDayOfWeek Read more...}
|
|
65079
|
+
*/
|
|
65080
|
+
firstDayOfWeek?: BinParametersBaseProperties["firstDayOfWeek"];
|
|
65069
65081
|
/**
|
|
65070
65082
|
* The number of bins to generate.
|
|
65071
65083
|
*
|
|
@@ -65184,6 +65196,16 @@ declare namespace __esri {
|
|
|
65184
65196
|
sensorName?: string;
|
|
65185
65197
|
}
|
|
65186
65198
|
|
|
65199
|
+
export class BinParametersBase {
|
|
65200
|
+
field: string;
|
|
65201
|
+
firstDayOfWeek: number;
|
|
65202
|
+
}
|
|
65203
|
+
|
|
65204
|
+
interface BinParametersBaseProperties {
|
|
65205
|
+
field?: string;
|
|
65206
|
+
firstDayOfWeek?: number;
|
|
65207
|
+
}
|
|
65208
|
+
|
|
65187
65209
|
export interface BufferParameters extends Accessor, JSONSupport {}
|
|
65188
65210
|
|
|
65189
65211
|
export class BufferParameters {
|
|
@@ -66583,7 +66605,7 @@ declare namespace __esri {
|
|
|
66583
66605
|
where?: string;
|
|
66584
66606
|
}
|
|
66585
66607
|
|
|
66586
|
-
export interface DateBinParameters extends Accessor, JSONSupport {}
|
|
66608
|
+
export interface DateBinParameters extends Accessor, JSONSupport, BinParametersBase {}
|
|
66587
66609
|
|
|
66588
66610
|
export class DateBinParameters {
|
|
66589
66611
|
/**
|
|
@@ -66602,6 +66624,18 @@ declare namespace __esri {
|
|
|
66602
66624
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#end Read more...}
|
|
66603
66625
|
*/
|
|
66604
66626
|
end: Date | string | number;
|
|
66627
|
+
/**
|
|
66628
|
+
* The field name used to calculate the bins.
|
|
66629
|
+
*
|
|
66630
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#field Read more...}
|
|
66631
|
+
*/
|
|
66632
|
+
declare field: BinParametersBase["field"];
|
|
66633
|
+
/**
|
|
66634
|
+
* The first day of the week.
|
|
66635
|
+
*
|
|
66636
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#firstDayOfWeek Read more...}
|
|
66637
|
+
*/
|
|
66638
|
+
declare firstDayOfWeek: BinParametersBase["firstDayOfWeek"];
|
|
66605
66639
|
/**
|
|
66606
66640
|
* Defines a length of time in one of the temporal units such as `days`, `weeks`, or `years`.
|
|
66607
66641
|
*
|
|
@@ -66652,13 +66686,25 @@ declare namespace __esri {
|
|
|
66652
66686
|
static fromJSON(json: any): DateBinParameters;
|
|
66653
66687
|
}
|
|
66654
66688
|
|
|
66655
|
-
interface DateBinParametersProperties {
|
|
66689
|
+
interface DateBinParametersProperties extends BinParametersBaseProperties {
|
|
66656
66690
|
/**
|
|
66657
66691
|
* The end date value for bins to generate.
|
|
66658
66692
|
*
|
|
66659
66693
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#end Read more...}
|
|
66660
66694
|
*/
|
|
66661
66695
|
end?: DateProperties | string | number;
|
|
66696
|
+
/**
|
|
66697
|
+
* The field name used to calculate the bins.
|
|
66698
|
+
*
|
|
66699
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#field Read more...}
|
|
66700
|
+
*/
|
|
66701
|
+
field?: BinParametersBaseProperties["field"];
|
|
66702
|
+
/**
|
|
66703
|
+
* The first day of the week.
|
|
66704
|
+
*
|
|
66705
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#firstDayOfWeek Read more...}
|
|
66706
|
+
*/
|
|
66707
|
+
firstDayOfWeek?: BinParametersBaseProperties["firstDayOfWeek"];
|
|
66662
66708
|
/**
|
|
66663
66709
|
* Defines a length of time in one of the temporal units such as `days`, `weeks`, or `years`.
|
|
66664
66710
|
*
|
|
@@ -68052,7 +68098,7 @@ declare namespace __esri {
|
|
|
68052
68098
|
value?: string | number;
|
|
68053
68099
|
}
|
|
68054
68100
|
|
|
68055
|
-
export interface FixedBoundariesBinParameters extends Accessor, JSONSupport {}
|
|
68101
|
+
export interface FixedBoundariesBinParameters extends Accessor, JSONSupport, BinParametersBase {}
|
|
68056
68102
|
|
|
68057
68103
|
export class FixedBoundariesBinParameters {
|
|
68058
68104
|
/**
|
|
@@ -68071,6 +68117,18 @@ declare namespace __esri {
|
|
|
68071
68117
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#boundaries Read more...}
|
|
68072
68118
|
*/
|
|
68073
68119
|
boundaries: number[] | Date[];
|
|
68120
|
+
/**
|
|
68121
|
+
* The field name used to calculate the bins.
|
|
68122
|
+
*
|
|
68123
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#field Read more...}
|
|
68124
|
+
*/
|
|
68125
|
+
declare field: BinParametersBase["field"];
|
|
68126
|
+
/**
|
|
68127
|
+
* The first day of the week.
|
|
68128
|
+
*
|
|
68129
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#firstDayOfWeek Read more...}
|
|
68130
|
+
*/
|
|
68131
|
+
declare firstDayOfWeek: BinParametersBase["firstDayOfWeek"];
|
|
68074
68132
|
/**
|
|
68075
68133
|
* The type of bin parameters.
|
|
68076
68134
|
*
|
|
@@ -68097,16 +68155,28 @@ declare namespace __esri {
|
|
|
68097
68155
|
static fromJSON(json: any): FixedBoundariesBinParameters;
|
|
68098
68156
|
}
|
|
68099
68157
|
|
|
68100
|
-
interface FixedBoundariesBinParametersProperties {
|
|
68158
|
+
interface FixedBoundariesBinParametersProperties extends BinParametersBaseProperties {
|
|
68101
68159
|
/**
|
|
68102
68160
|
* Array of values representing bin boundaries.
|
|
68103
68161
|
*
|
|
68104
68162
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#boundaries Read more...}
|
|
68105
68163
|
*/
|
|
68106
68164
|
boundaries?: number[] | DateProperties[];
|
|
68165
|
+
/**
|
|
68166
|
+
* The field name used to calculate the bins.
|
|
68167
|
+
*
|
|
68168
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#field Read more...}
|
|
68169
|
+
*/
|
|
68170
|
+
field?: BinParametersBaseProperties["field"];
|
|
68171
|
+
/**
|
|
68172
|
+
* The first day of the week.
|
|
68173
|
+
*
|
|
68174
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#firstDayOfWeek Read more...}
|
|
68175
|
+
*/
|
|
68176
|
+
firstDayOfWeek?: BinParametersBaseProperties["firstDayOfWeek"];
|
|
68107
68177
|
}
|
|
68108
68178
|
|
|
68109
|
-
export interface FixedIntervalBinParameters extends Accessor, JSONSupport {}
|
|
68179
|
+
export interface FixedIntervalBinParameters extends Accessor, JSONSupport, BinParametersBase {}
|
|
68110
68180
|
|
|
68111
68181
|
export class FixedIntervalBinParameters {
|
|
68112
68182
|
/**
|
|
@@ -68125,6 +68195,18 @@ declare namespace __esri {
|
|
|
68125
68195
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#end Read more...}
|
|
68126
68196
|
*/
|
|
68127
68197
|
end: number | Date;
|
|
68198
|
+
/**
|
|
68199
|
+
* The field name used to calculate the bins.
|
|
68200
|
+
*
|
|
68201
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#field Read more...}
|
|
68202
|
+
*/
|
|
68203
|
+
declare field: BinParametersBase["field"];
|
|
68204
|
+
/**
|
|
68205
|
+
* The first day of the week.
|
|
68206
|
+
*
|
|
68207
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#firstDayOfWeek Read more...}
|
|
68208
|
+
*/
|
|
68209
|
+
declare firstDayOfWeek: BinParametersBase["firstDayOfWeek"];
|
|
68128
68210
|
/**
|
|
68129
68211
|
* Represents the interval of values to be included in each bin.
|
|
68130
68212
|
*
|
|
@@ -68165,13 +68247,25 @@ declare namespace __esri {
|
|
|
68165
68247
|
static fromJSON(json: any): FixedIntervalBinParameters;
|
|
68166
68248
|
}
|
|
68167
68249
|
|
|
68168
|
-
interface FixedIntervalBinParametersProperties {
|
|
68250
|
+
interface FixedIntervalBinParametersProperties extends BinParametersBaseProperties {
|
|
68169
68251
|
/**
|
|
68170
68252
|
* The end value of bins to generate.
|
|
68171
68253
|
*
|
|
68172
68254
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#end Read more...}
|
|
68173
68255
|
*/
|
|
68174
68256
|
end?: number | DateProperties;
|
|
68257
|
+
/**
|
|
68258
|
+
* The field name used to calculate the bins.
|
|
68259
|
+
*
|
|
68260
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#field Read more...}
|
|
68261
|
+
*/
|
|
68262
|
+
field?: BinParametersBaseProperties["field"];
|
|
68263
|
+
/**
|
|
68264
|
+
* The first day of the week.
|
|
68265
|
+
*
|
|
68266
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#firstDayOfWeek Read more...}
|
|
68267
|
+
*/
|
|
68268
|
+
firstDayOfWeek?: BinParametersBaseProperties["firstDayOfWeek"];
|
|
68175
68269
|
/**
|
|
68176
68270
|
* Represents the interval of values to be included in each bin.
|
|
68177
68271
|
*
|
|
@@ -139162,6 +139256,11 @@ declare module "esri/renderers/mixins/VisualVariablesMixin" {
|
|
|
139162
139256
|
export = VisualVariablesMixin;
|
|
139163
139257
|
}
|
|
139164
139258
|
|
|
139259
|
+
declare module "esri/rest/support/BinParametersBase" {
|
|
139260
|
+
import BinParametersBase = __esri.BinParametersBase;
|
|
139261
|
+
export = BinParametersBase;
|
|
139262
|
+
}
|
|
139263
|
+
|
|
139165
139264
|
declare module "esri/rest/support/QueryMixin" {
|
|
139166
139265
|
type QueryMixin = __esri.QueryMixin;
|
|
139167
139266
|
export = QueryMixin;
|