@chrt-inc/typescript-sdk 1.418.0 → 1.419.0
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/cjs/Client.js +2 -2
- package/dist/cjs/api/types/FlightAwareAlertFlight.d.ts +16 -0
- package/dist/cjs/api/types/FlightAwareAlertFlight.js +5 -0
- package/dist/cjs/api/types/FlightAwareAlertPayload.d.ts +17 -0
- package/dist/cjs/api/types/FlightAwareAlertPayload.js +5 -0
- package/dist/cjs/api/types/FlightAwareWebhookResponse.d.ts +7 -0
- package/dist/cjs/api/types/FlightAwareWebhookResponse.js +5 -0
- package/dist/cjs/api/types/Session1.d.ts +1 -0
- package/dist/cjs/api/types/index.d.ts +3 -0
- package/dist/cjs/api/types/index.js +3 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/types/FlightAwareAlertFlight.d.mts +16 -0
- package/dist/esm/api/types/FlightAwareAlertFlight.mjs +4 -0
- package/dist/esm/api/types/FlightAwareAlertPayload.d.mts +17 -0
- package/dist/esm/api/types/FlightAwareAlertPayload.mjs +4 -0
- package/dist/esm/api/types/FlightAwareWebhookResponse.d.mts +7 -0
- package/dist/esm/api/types/FlightAwareWebhookResponse.mjs +4 -0
- package/dist/esm/api/types/Session1.d.mts +1 -0
- package/dist/esm/api/types/index.d.mts +3 -0
- package/dist/esm/api/types/index.mjs +3 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/Client.js
CHANGED
|
@@ -67,8 +67,8 @@ class ChrtClient {
|
|
|
67
67
|
this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
|
|
68
68
|
"X-Fern-Language": "JavaScript",
|
|
69
69
|
"X-Fern-SDK-Name": "@chrt-inc/typescript-sdk",
|
|
70
|
-
"X-Fern-SDK-Version": "1.
|
|
71
|
-
"User-Agent": "@chrt-inc/typescript-sdk/1.
|
|
70
|
+
"X-Fern-SDK-Version": "1.419.0",
|
|
71
|
+
"User-Agent": "@chrt-inc/typescript-sdk/1.419.0",
|
|
72
72
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
73
73
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
74
74
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* The 'flight' object nested inside a FlightAware alert POST payload.
|
|
6
|
+
*/
|
|
7
|
+
export interface FlightAwareAlertFlight {
|
|
8
|
+
fa_flight_id: string;
|
|
9
|
+
ident: string;
|
|
10
|
+
registration?: string | null;
|
|
11
|
+
aircraft_type?: string | null;
|
|
12
|
+
origin?: string | null;
|
|
13
|
+
destination?: string | null;
|
|
14
|
+
/** Accepts any additional properties */
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Chrt from "../index.js";
|
|
5
|
+
/**
|
|
6
|
+
* Top-level FlightAware alert POST payload.
|
|
7
|
+
*/
|
|
8
|
+
export interface FlightAwareAlertPayload {
|
|
9
|
+
long_description?: string | null;
|
|
10
|
+
short_description?: string | null;
|
|
11
|
+
summary?: string | null;
|
|
12
|
+
event_code?: string | null;
|
|
13
|
+
alert_id?: number | null;
|
|
14
|
+
flight?: Chrt.FlightAwareAlertFlight | null;
|
|
15
|
+
/** Accepts any additional properties */
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}
|
|
@@ -36,6 +36,9 @@ export * from "./DriverStatusEnum.js";
|
|
|
36
36
|
export * from "./DriverUpdateAvailabilityReq.js";
|
|
37
37
|
export * from "./DriverUpdateRes.js";
|
|
38
38
|
export * from "./FirebaseCloudMessagingTokenData1.js";
|
|
39
|
+
export * from "./FlightAwareAlertFlight.js";
|
|
40
|
+
export * from "./FlightAwareAlertPayload.js";
|
|
41
|
+
export * from "./FlightAwareWebhookResponse.js";
|
|
39
42
|
export * from "./FlightInfoForTaskRes.js";
|
|
40
43
|
export * from "./FlightTaskActionEnum1.js";
|
|
41
44
|
export * from "./ForwarderConnectionRes.js";
|
|
@@ -52,6 +52,9 @@ __exportStar(require("./DriverStatusEnum.js"), exports);
|
|
|
52
52
|
__exportStar(require("./DriverUpdateAvailabilityReq.js"), exports);
|
|
53
53
|
__exportStar(require("./DriverUpdateRes.js"), exports);
|
|
54
54
|
__exportStar(require("./FirebaseCloudMessagingTokenData1.js"), exports);
|
|
55
|
+
__exportStar(require("./FlightAwareAlertFlight.js"), exports);
|
|
56
|
+
__exportStar(require("./FlightAwareAlertPayload.js"), exports);
|
|
57
|
+
__exportStar(require("./FlightAwareWebhookResponse.js"), exports);
|
|
55
58
|
__exportStar(require("./FlightInfoForTaskRes.js"), exports);
|
|
56
59
|
__exportStar(require("./FlightTaskActionEnum1.js"), exports);
|
|
57
60
|
__exportStar(require("./ForwarderConnectionRes.js"), exports);
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.
|
|
1
|
+
export declare const SDK_VERSION = "1.419.0";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -31,8 +31,8 @@ export class ChrtClient {
|
|
|
31
31
|
this._options = Object.assign(Object.assign({}, _options), { headers: mergeHeaders({
|
|
32
32
|
"X-Fern-Language": "JavaScript",
|
|
33
33
|
"X-Fern-SDK-Name": "@chrt-inc/typescript-sdk",
|
|
34
|
-
"X-Fern-SDK-Version": "1.
|
|
35
|
-
"User-Agent": "@chrt-inc/typescript-sdk/1.
|
|
34
|
+
"X-Fern-SDK-Version": "1.419.0",
|
|
35
|
+
"User-Agent": "@chrt-inc/typescript-sdk/1.419.0",
|
|
36
36
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
37
37
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
38
38
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* The 'flight' object nested inside a FlightAware alert POST payload.
|
|
6
|
+
*/
|
|
7
|
+
export interface FlightAwareAlertFlight {
|
|
8
|
+
fa_flight_id: string;
|
|
9
|
+
ident: string;
|
|
10
|
+
registration?: string | null;
|
|
11
|
+
aircraft_type?: string | null;
|
|
12
|
+
origin?: string | null;
|
|
13
|
+
destination?: string | null;
|
|
14
|
+
/** Accepts any additional properties */
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Chrt from "../index.mjs";
|
|
5
|
+
/**
|
|
6
|
+
* Top-level FlightAware alert POST payload.
|
|
7
|
+
*/
|
|
8
|
+
export interface FlightAwareAlertPayload {
|
|
9
|
+
long_description?: string | null;
|
|
10
|
+
short_description?: string | null;
|
|
11
|
+
summary?: string | null;
|
|
12
|
+
event_code?: string | null;
|
|
13
|
+
alert_id?: number | null;
|
|
14
|
+
flight?: Chrt.FlightAwareAlertFlight | null;
|
|
15
|
+
/** Accepts any additional properties */
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}
|
|
@@ -36,6 +36,9 @@ export * from "./DriverStatusEnum.mjs";
|
|
|
36
36
|
export * from "./DriverUpdateAvailabilityReq.mjs";
|
|
37
37
|
export * from "./DriverUpdateRes.mjs";
|
|
38
38
|
export * from "./FirebaseCloudMessagingTokenData1.mjs";
|
|
39
|
+
export * from "./FlightAwareAlertFlight.mjs";
|
|
40
|
+
export * from "./FlightAwareAlertPayload.mjs";
|
|
41
|
+
export * from "./FlightAwareWebhookResponse.mjs";
|
|
39
42
|
export * from "./FlightInfoForTaskRes.mjs";
|
|
40
43
|
export * from "./FlightTaskActionEnum1.mjs";
|
|
41
44
|
export * from "./ForwarderConnectionRes.mjs";
|
|
@@ -36,6 +36,9 @@ export * from "./DriverStatusEnum.mjs";
|
|
|
36
36
|
export * from "./DriverUpdateAvailabilityReq.mjs";
|
|
37
37
|
export * from "./DriverUpdateRes.mjs";
|
|
38
38
|
export * from "./FirebaseCloudMessagingTokenData1.mjs";
|
|
39
|
+
export * from "./FlightAwareAlertFlight.mjs";
|
|
40
|
+
export * from "./FlightAwareAlertPayload.mjs";
|
|
41
|
+
export * from "./FlightAwareWebhookResponse.mjs";
|
|
39
42
|
export * from "./FlightInfoForTaskRes.mjs";
|
|
40
43
|
export * from "./FlightTaskActionEnum1.mjs";
|
|
41
44
|
export * from "./ForwarderConnectionRes.mjs";
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.
|
|
1
|
+
export declare const SDK_VERSION = "1.419.0";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "1.
|
|
1
|
+
export const SDK_VERSION = "1.419.0";
|