@soat/sdk 0.13.13 → 0.13.14

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.cts CHANGED
@@ -6277,6 +6277,13 @@ type ReplaceFileTagsResponse = ReplaceFileTagsResponses[keyof ReplaceFileTagsRes
6277
6277
  type ValidateFormationData = {
6278
6278
  body: {
6279
6279
  template?: FormationTemplateInput;
6280
+ /**
6281
+ * Runtime parameter values that override or supply template parameter defaults. Keys must match parameter names declared in `template.parameters`. When provided, the validation result also reports required parameters that are still missing after applying these values.
6282
+ *
6283
+ */
6284
+ parameters?: {
6285
+ [key: string]: string;
6286
+ } | null;
6280
6287
  };
6281
6288
  path?: never;
6282
6289
  query?: never;
package/dist/index.d.mts CHANGED
@@ -6277,6 +6277,13 @@ type ReplaceFileTagsResponse = ReplaceFileTagsResponses[keyof ReplaceFileTagsRes
6277
6277
  type ValidateFormationData = {
6278
6278
  body: {
6279
6279
  template?: FormationTemplateInput;
6280
+ /**
6281
+ * Runtime parameter values that override or supply template parameter defaults. Keys must match parameter names declared in `template.parameters`. When provided, the validation result also reports required parameters that are still missing after applying these values.
6282
+ *
6283
+ */
6284
+ parameters?: {
6285
+ [key: string]: string;
6286
+ } | null;
6280
6287
  };
6281
6288
  path?: never;
6282
6289
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soat/sdk",
3
- "version": "0.13.13",
3
+ "version": "0.13.14",
4
4
  "description": "TypeScript SDK for the SOAT API",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",