@smplkit/sdk 1.3.18 → 1.3.19

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
@@ -315,14 +315,14 @@ interface components {
315
315
  type: string;
316
316
  /**
317
317
  * Default
318
- * @description Default value; must reference a value in the values array
318
+ * @description Default value; must reference a value in the values array (constrained) or match the flag type (unconstrained)
319
319
  */
320
320
  default: unknown;
321
321
  /**
322
322
  * Values
323
- * @description Closed set of possible values
323
+ * @description Ordered set of allowed values (constrained), or null (unconstrained)
324
324
  */
325
- values: components["schemas"]["FlagValue"][];
325
+ values?: components["schemas"]["FlagValue"][] | null;
326
326
  /** Environments */
327
327
  environments?: {
328
328
  [key: string]: components["schemas"]["FlagEnvironment"];
package/dist/index.d.ts CHANGED
@@ -315,14 +315,14 @@ interface components {
315
315
  type: string;
316
316
  /**
317
317
  * Default
318
- * @description Default value; must reference a value in the values array
318
+ * @description Default value; must reference a value in the values array (constrained) or match the flag type (unconstrained)
319
319
  */
320
320
  default: unknown;
321
321
  /**
322
322
  * Values
323
- * @description Closed set of possible values
323
+ * @description Ordered set of allowed values (constrained), or null (unconstrained)
324
324
  */
325
- values: components["schemas"]["FlagValue"][];
325
+ values?: components["schemas"]["FlagValue"][] | null;
326
326
  /** Environments */
327
327
  environments?: {
328
328
  [key: string]: components["schemas"]["FlagEnvironment"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smplkit/sdk",
3
- "version": "1.3.18",
3
+ "version": "1.3.19",
4
4
  "type": "module",
5
5
  "description": "Official TypeScript SDK for the smplkit platform",
6
6
  "main": "./dist/index.cjs",