Skip to content

Commit 445e416

Browse files
authored
feat: Add new SDK features to sdk_metadata.sql (plugins, event compression, polling compression, omit anon contexts.) (#325)
* Add new SDK features to sdk_metadata.sql * Fix SQL syntax for pollingResponseCompression entry
1 parent df720e4 commit 445e416

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

schemas/sdk_metadata.sql

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,12 @@ INSERT INTO sdk_feature_info (id, name, description) VALUES
131131
('storingData', 'Storing data', 'Configure an external database as a feature store. Persist flag data across application restarts.'),
132132
('flagChanges', 'Subscribing to flag changes', 'Use a listener pattern to subscribe to flag change notifications.'),
133133
('testDataSource', 'Test data sources', 'Mock data of an SDK. Useful for unit tests; cannot be used in production.'),
134-
('webProxy', 'Web proxy configuration', 'Configure the SDK to connect to LaunchDarkly through a web proxy.');
134+
('webProxy', 'Web proxy configuration', 'Configure the SDK to connect to LaunchDarkly through a web proxy.'),
135+
('fdv2', 'Data Saving Mode', 'Our second generation flag delivery protocol.'),
136+
('pluginSupport', 'Plugin Support', 'Provides SDK extensibility through the use of plugins.'),
137+
('omitAnonContexts', 'Omit Anonymous Contexts from Events', 'Optionally omit anonymous contexts from events.'),
138+
('eventCompression', 'Event Compression', 'Optionally support compressing event payloads sent to LaunchDarkly.'),
139+
('pollingResponseCompression', 'Polling Response Compression', 'Supports receiving compressed polling responses.');
135140

136141
INSERT INTO sdk_language_info (language) VALUES
137142
('Apex'),

0 commit comments

Comments
 (0)