@flagify/node 1.0.1 → 1.0.2

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.mts CHANGED
@@ -247,7 +247,9 @@ interface FlagifyFlaggy {
247
247
  segmentId?: string;
248
248
  valueOverride?: unknown;
249
249
  rolloutPercentage?: number;
250
+ rolloutSalt?: string;
250
251
  enabled: boolean;
252
+ matchType?: 'ALL' | 'ANY';
251
253
  conditions?: Array<{
252
254
  attribute: string;
253
255
  operator: 'equals' | 'not_equals' | 'contains' | 'not_contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in' | 'gt' | 'lt';
package/dist/index.d.ts CHANGED
@@ -247,7 +247,9 @@ interface FlagifyFlaggy {
247
247
  segmentId?: string;
248
248
  valueOverride?: unknown;
249
249
  rolloutPercentage?: number;
250
+ rolloutSalt?: string;
250
251
  enabled: boolean;
252
+ matchType?: 'ALL' | 'ANY';
251
253
  conditions?: Array<{
252
254
  attribute: string;
253
255
  operator: 'equals' | 'not_equals' | 'contains' | 'not_contains' | 'starts_with' | 'ends_with' | 'in' | 'not_in' | 'gt' | 'lt';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flagify/node",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Official Flagify SDK for feature flag evaluation. TypeScript-first with local caching.",
5
5
  "author": "Mario Campbell R <mario@mariocampbellr.com>",
6
6
  "license": "MIT",