@algolia/monitoring 5.2.4-beta.5 → 5.10.0-beta.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/README.md +15 -7
- package/dist/browser.d.ts +194 -63
- package/dist/builds/browser.js +24 -22
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +4 -4
- package/dist/builds/fetch.js +388 -0
- package/dist/builds/fetch.js.map +1 -0
- package/dist/builds/node.cjs +21 -20
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +22 -20
- package/dist/builds/node.js.map +1 -1
- package/dist/fetch.d.ts +437 -0
- package/dist/node.d.cts +196 -64
- package/dist/node.d.ts +196 -64
- package/dist/src/monitoringClient.cjs +19 -19
- package/dist/src/monitoringClient.cjs.map +1 -1
- package/dist/src/monitoringClient.js +19 -19
- package/dist/src/monitoringClient.js.map +1 -1
- package/index.d.ts +0 -1
- package/index.js +1 -2
- package/package.json +16 -11
- package/model/badRequest.ts +0 -5
- package/model/clientMethodProps.ts +0 -132
- package/model/errorBase.ts +0 -8
- package/model/forbidden.ts +0 -5
- package/model/incident.ts +0 -15
- package/model/incidentEntry.ts +0 -12
- package/model/incidentsResponse.ts +0 -7
- package/model/index.ts +0 -27
- package/model/indexingMetric.ts +0 -7
- package/model/indexingTimeResponse.ts +0 -7
- package/model/infrastructureResponse.ts +0 -7
- package/model/inventoryResponse.ts +0 -7
- package/model/latencyMetric.ts +0 -7
- package/model/latencyResponse.ts +0 -7
- package/model/metric.ts +0 -3
- package/model/metrics.ts +0 -30
- package/model/period.ts +0 -3
- package/model/probesMetric.ts +0 -13
- package/model/region.ts +0 -21
- package/model/server.ts +0 -33
- package/model/serverStatus.ts +0 -3
- package/model/status.ts +0 -6
- package/model/statusResponse.ts +0 -7
- package/model/timeEntry.ts +0 -13
- package/model/type.ts +0 -3
- package/model/unauthorized.ts +0 -5
package/model/region.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Region where the cluster is located.
|
|
5
|
-
*/
|
|
6
|
-
export type Region =
|
|
7
|
-
| 'au'
|
|
8
|
-
| 'br'
|
|
9
|
-
| 'ca'
|
|
10
|
-
| 'de'
|
|
11
|
-
| 'eu'
|
|
12
|
-
| 'hk'
|
|
13
|
-
| 'in'
|
|
14
|
-
| 'jp'
|
|
15
|
-
| 'sg'
|
|
16
|
-
| 'uae'
|
|
17
|
-
| 'uk'
|
|
18
|
-
| 'usc'
|
|
19
|
-
| 'use'
|
|
20
|
-
| 'usw'
|
|
21
|
-
| 'za';
|
package/model/server.ts
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
-
|
|
3
|
-
import type { Region } from './region';
|
|
4
|
-
import type { ServerStatus } from './serverStatus';
|
|
5
|
-
import type { Type } from './type';
|
|
6
|
-
|
|
7
|
-
export type Server = {
|
|
8
|
-
/**
|
|
9
|
-
* Server name.
|
|
10
|
-
*/
|
|
11
|
-
name?: string;
|
|
12
|
-
|
|
13
|
-
region?: Region;
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Included to support legacy applications. Use `is_replica` instead.
|
|
17
|
-
*/
|
|
18
|
-
is_slave?: boolean;
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Whether this server is a replica of another server.
|
|
22
|
-
*/
|
|
23
|
-
is_replica?: boolean;
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Name of the cluster to which this server belongs.
|
|
27
|
-
*/
|
|
28
|
-
cluster?: string;
|
|
29
|
-
|
|
30
|
-
status?: ServerStatus;
|
|
31
|
-
|
|
32
|
-
type?: Type;
|
|
33
|
-
};
|
package/model/serverStatus.ts
DELETED
package/model/status.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Status of the cluster.
|
|
5
|
-
*/
|
|
6
|
-
export type Status = 'degraded_performance' | 'major_outage' | 'operational' | 'partial_outage';
|
package/model/statusResponse.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
-
|
|
3
|
-
import type { Status } from './status';
|
|
4
|
-
|
|
5
|
-
export type StatusResponse = {
|
|
6
|
-
status?: Record<string, Status>;
|
|
7
|
-
};
|
package/model/timeEntry.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
-
|
|
3
|
-
export type TimeEntry = {
|
|
4
|
-
/**
|
|
5
|
-
* Timestamp, measured in milliseconds since the Unix epoch.
|
|
6
|
-
*/
|
|
7
|
-
t?: number;
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Time in ms.
|
|
11
|
-
*/
|
|
12
|
-
v?: number;
|
|
13
|
-
};
|
package/model/type.ts
DELETED
package/model/unauthorized.ts
DELETED