@anduril-industries/lattice-sdk 4.8.1 → 4.9.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/BaseClient.js +2 -2
- package/dist/cjs/api/types/MediaItem.d.ts +4 -0
- package/dist/cjs/api/types/MediaItem.js +1 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.mjs +2 -2
- package/dist/esm/api/types/MediaItem.d.mts +4 -0
- package/dist/esm/api/types/MediaItem.mjs +1 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +2 -2
package/dist/cjs/BaseClient.js
CHANGED
|
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
|
|
|
43
43
|
const headers = (0, headers_js_1.mergeHeaders)({
|
|
44
44
|
"X-Fern-Language": "JavaScript",
|
|
45
45
|
"X-Fern-SDK-Name": "@anduril-industries/lattice-sdk",
|
|
46
|
-
"X-Fern-SDK-Version": "4.
|
|
47
|
-
"User-Agent": "@anduril-industries/lattice-sdk/4.
|
|
46
|
+
"X-Fern-SDK-Version": "4.9.0",
|
|
47
|
+
"User-Agent": "@anduril-industries/lattice-sdk/4.9.0",
|
|
48
48
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
49
49
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
50
50
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
export interface MediaItem {
|
|
2
|
+
/** A unique identifier for this mediaItem. */
|
|
3
|
+
itemIdentifier?: string | undefined;
|
|
4
|
+
/** The type of media for this item. */
|
|
2
5
|
type?: MediaItem.Type | undefined;
|
|
3
6
|
/** The path, relative to the environment base URL, where media related to an entity can be accessed */
|
|
4
7
|
relativePath?: string | undefined;
|
|
5
8
|
}
|
|
6
9
|
export declare namespace MediaItem {
|
|
10
|
+
/** The type of media for this item. */
|
|
7
11
|
const Type: {
|
|
8
12
|
readonly MediaTypeInvalid: "MEDIA_TYPE_INVALID";
|
|
9
13
|
readonly MediaTypeImage: "MEDIA_TYPE_IMAGE";
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
exports.MediaItem = void 0;
|
|
5
5
|
var MediaItem;
|
|
6
6
|
(function (MediaItem) {
|
|
7
|
+
/** The type of media for this item. */
|
|
7
8
|
MediaItem.Type = {
|
|
8
9
|
MediaTypeInvalid: "MEDIA_TYPE_INVALID",
|
|
9
10
|
MediaTypeImage: "MEDIA_TYPE_IMAGE",
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.
|
|
1
|
+
export declare const SDK_VERSION = "4.9.0";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/BaseClient.mjs
CHANGED
|
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
|
|
|
6
6
|
const headers = mergeHeaders({
|
|
7
7
|
"X-Fern-Language": "JavaScript",
|
|
8
8
|
"X-Fern-SDK-Name": "@anduril-industries/lattice-sdk",
|
|
9
|
-
"X-Fern-SDK-Version": "4.
|
|
10
|
-
"User-Agent": "@anduril-industries/lattice-sdk/4.
|
|
9
|
+
"X-Fern-SDK-Version": "4.9.0",
|
|
10
|
+
"User-Agent": "@anduril-industries/lattice-sdk/4.9.0",
|
|
11
11
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
12
12
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
13
13
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
export interface MediaItem {
|
|
2
|
+
/** A unique identifier for this mediaItem. */
|
|
3
|
+
itemIdentifier?: string | undefined;
|
|
4
|
+
/** The type of media for this item. */
|
|
2
5
|
type?: MediaItem.Type | undefined;
|
|
3
6
|
/** The path, relative to the environment base URL, where media related to an entity can be accessed */
|
|
4
7
|
relativePath?: string | undefined;
|
|
5
8
|
}
|
|
6
9
|
export declare namespace MediaItem {
|
|
10
|
+
/** The type of media for this item. */
|
|
7
11
|
const Type: {
|
|
8
12
|
readonly MediaTypeInvalid: "MEDIA_TYPE_INVALID";
|
|
9
13
|
readonly MediaTypeImage: "MEDIA_TYPE_IMAGE";
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.
|
|
1
|
+
export declare const SDK_VERSION = "4.9.0";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "4.
|
|
1
|
+
export const SDK_VERSION = "4.9.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anduril-industries/lattice-sdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.9.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"ts-loader": "^9.5.4",
|
|
96
96
|
"vitest": "^4.1.1",
|
|
97
97
|
"msw": "2.11.2",
|
|
98
|
-
"@types/node": "^
|
|
98
|
+
"@types/node": "^20.0.0",
|
|
99
99
|
"typescript": "~5.9.3",
|
|
100
100
|
"@biomejs/biome": "2.4.10"
|
|
101
101
|
},
|