@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 +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
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
|
|
323
|
+
* @description Ordered set of allowed values (constrained), or null (unconstrained)
|
|
324
324
|
*/
|
|
325
|
-
values
|
|
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
|
|
323
|
+
* @description Ordered set of allowed values (constrained), or null (unconstrained)
|
|
324
324
|
*/
|
|
325
|
-
values
|
|
325
|
+
values?: components["schemas"]["FlagValue"][] | null;
|
|
326
326
|
/** Environments */
|
|
327
327
|
environments?: {
|
|
328
328
|
[key: string]: components["schemas"]["FlagEnvironment"];
|