@@ -19,12 +19,6 @@ class DataStoreMode(Enum):
1919 """
2020 DataStoreMode represents the mode of operation of a Data Store in FDV2
2121 mode.
22-
23- This enum is not stable, and not subject to any backwards compatibility
24- guarantees or semantic versioning. It is not suitable for production usage.
25-
26- Do not use it.
27- You have been warned.
2822 """
2923
3024 READ_ONLY = 'read-only'
@@ -1143,12 +1137,6 @@ def remove_listener(self, listener: Callable[[DataStoreStatus], None]):
11431137class EventName (str , Enum ):
11441138 """
11451139 EventName represents the name of an event that can be sent by the server for FDv2.
1146-
1147- This type is not stable, and not subject to any backwards
1148- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1149-
1150- Do not use it.
1151- You have been warned.
11521140 """
11531141
11541142 PUT_OBJECT = "put-object"
@@ -1192,12 +1180,6 @@ class EventName(str, Enum):
11921180class Selector :
11931181 """
11941182 Selector represents a particular snapshot of data.
1195-
1196- This type is not stable, and not subject to any backwards
1197- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1198-
1199- Do not use it.
1200- You have been warned.
12011183 """
12021184
12031185 state : str = ""
@@ -1252,12 +1234,6 @@ def from_dict(data: dict) -> "Selector":
12521234class ChangeType (Enum ):
12531235 """
12541236 ChangeType specifies if an object is being upserted or deleted.
1255-
1256- This type is not stable, and not subject to any backwards
1257- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1258-
1259- Do not use it.
1260- You have been warned.
12611237 """
12621238
12631239 PUT = "put"
@@ -1274,12 +1250,6 @@ class ChangeType(Enum):
12741250class ObjectKind (str , Enum ):
12751251 """
12761252 ObjectKind represents the kind of object.
1277-
1278- This type is not stable, and not subject to any backwards
1279- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1280-
1281- Do not use it.
1282- You have been warned.
12831253 """
12841254
12851255 FLAG = "flag"
@@ -1290,12 +1260,6 @@ class ObjectKind(str, Enum):
12901260class Change :
12911261 """
12921262 Change represents a change to a piece of data, such as an update or deletion.
1293-
1294- This type is not stable, and not subject to any backwards
1295- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1296-
1297- Do not use it.
1298- You have been warned.
12991263 """
13001264
13011265 action : ChangeType
@@ -1308,12 +1272,6 @@ class Change:
13081272class IntentCode (str , Enum ):
13091273 """
13101274 IntentCode represents the various intents that can be sent by the server.
1311-
1312- This type is not stable, and not subject to any backwards
1313- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1314-
1315- Do not use it.
1316- You have been warned.
13171275 """
13181276
13191277 TRANSFER_FULL = "xfer-full"
@@ -1336,12 +1294,6 @@ class IntentCode(str, Enum):
13361294class ChangeSet :
13371295 """
13381296 ChangeSet represents a list of changes to be applied.
1339-
1340- This type is not stable, and not subject to any backwards
1341- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1342-
1343- Do not use it.
1344- You have been warned.
13451297 """
13461298
13471299 intent_code : IntentCode
@@ -1355,12 +1307,6 @@ class Basis:
13551307 Basis represents the initial payload of data that a data source can
13561308 provide. Initializers provide this via fetch, whereas Synchronizers provide
13571309 it asynchronously.
1358-
1359- This type is not stable, and not subject to any backwards
1360- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1361-
1362- Do not use it.
1363- You have been warned.
13641310 """
13651311
13661312 change_set : ChangeSet
@@ -1378,12 +1324,6 @@ class Basis:
13781324class ChangeSetBuilder :
13791325 """
13801326 ChangeSetBuilder is a helper for constructing a ChangeSet.
1381-
1382- This type is not stable, and not subject to any backwards
1383- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1384-
1385- Do not use it.
1386- You have been warned.
13871327 """
13881328
13891329 def __init__ (self ):
@@ -1490,12 +1430,6 @@ def add_delete(self, kind, key, version):
14901430class Payload :
14911431 """
14921432 Payload represents a payload delivered in a streaming response.
1493-
1494- This type is not stable, and not subject to any backwards
1495- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1496-
1497- Do not use it.
1498- You have been warned.
14991433 """
15001434
15011435 id : str
@@ -1539,12 +1473,6 @@ class ServerIntent:
15391473 """
15401474 ServerIntent represents the type of change associated with the payload
15411475 (e.g., transfer full, transfer changes, etc.)
1542-
1543- This type is not stable, and not subject to any backwards
1544- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1545-
1546- Do not use it.
1547- You have been warned.
15481476 """
15491477
15501478 payload : Payload
@@ -1582,12 +1510,6 @@ class SelectorStore(Protocol):
15821510 """
15831511 SelectorStore represents a component capable of providing Selectors
15841512 for data retrieval.
1585-
1586- This type is not stable, and not subject to any backwards
1587- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1588-
1589- Do not use it.
1590- You have been warned.
15911513 """
15921514
15931515 @abstractmethod
@@ -1611,12 +1533,6 @@ class Initializer(Protocol): # pylint: disable=too-few-public-methods
16111533 which may be stale but is fast to retrieve. This initial data serves as a
16121534 foundation for a Synchronizer to build upon, enabling it to provide updates
16131535 as new changes occur.
1614-
1615- This type is not stable, and not subject to any backwards
1616- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1617-
1618- Do not use it.
1619- You have been warned.
16201536 """
16211537
16221538 @property
@@ -1643,12 +1559,6 @@ class Update:
16431559 """
16441560 Update represents the results of a synchronizer's ongoing sync
16451561 method.
1646-
1647- This type is not stable, and not subject to any backwards
1648- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1649-
1650- Do not use it.
1651- You have been warned.
16521562 """
16531563
16541564 state : DataSourceState
@@ -1673,12 +1583,6 @@ class Synchronizer(Protocol): # pylint: disable=too-few-public-methods
16731583 It is responsible for yielding Update objects that represent the current state
16741584 of the data source, including any changes that have occurred since the last
16751585 synchronization.
1676-
1677- This type is not stable, and not subject to any backwards
1678- compatibility guarantees or semantic versioning. It is not suitable for production usage.
1679-
1680- Do not use it.
1681- You have been warned.
16821586 """
16831587 @property
16841588 @abstractmethod
0 commit comments