@axiom-lattice/client-sdk 2.1.47 → 2.1.49
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/index.d.ts +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +10 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -725,6 +725,8 @@ interface Project {
|
|
|
725
725
|
workspaceId: string;
|
|
726
726
|
name: string;
|
|
727
727
|
description?: string;
|
|
728
|
+
/** Application-specific configuration stored as JSON */
|
|
729
|
+
config?: Record<string, unknown>;
|
|
728
730
|
createdAt: Date | string;
|
|
729
731
|
updatedAt: Date | string;
|
|
730
732
|
}
|
|
@@ -734,13 +736,21 @@ interface Project {
|
|
|
734
736
|
interface CreateProjectRequest {
|
|
735
737
|
name: string;
|
|
736
738
|
description?: string;
|
|
739
|
+
/** Application-specific configuration stored as JSON (optional) */
|
|
740
|
+
config?: Record<string, unknown>;
|
|
737
741
|
}
|
|
738
742
|
/**
|
|
739
743
|
* Update project request
|
|
744
|
+
*
|
|
745
|
+
* @remarks
|
|
746
|
+
* - The `config` field uses **replace** semantics: if provided, it completely
|
|
747
|
+
* overwrites the existing config. To preserve the current config, omit this field.
|
|
740
748
|
*/
|
|
741
749
|
interface UpdateProjectRequest {
|
|
742
750
|
name?: string;
|
|
743
751
|
description?: string;
|
|
752
|
+
/** Application-specific configuration stored as JSON (replaces existing if provided) */
|
|
753
|
+
config?: Record<string, unknown>;
|
|
744
754
|
}
|
|
745
755
|
/**
|
|
746
756
|
* File item in workspace
|