superposition-sdk 0.88.1__py3-none-any.whl → 0.90.0__py3-none-any.whl

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.

Potentially problematic release.


This version of superposition-sdk might be problematic. Click here for more details.

@@ -1303,6 +1303,8 @@ async def _serialize_list_contexts(input: ListContextsInput, config: Config) ->
1303
1303
  query_params.append(("page", str(input.page)))
1304
1304
  if input.count is not None:
1305
1305
  query_params.append(("count", str(input.count)))
1306
+ if input.all is not None:
1307
+ query_params.append(("all", ('true' if input.all else 'false')))
1306
1308
  if input.prefix is not None:
1307
1309
  query_params.append(("prefix", input.prefix))
1308
1310
  if input.sort_on is not None:
@@ -1315,6 +1317,8 @@ async def _serialize_list_contexts(input: ListContextsInput, config: Config) ->
1315
1317
  query_params.append(("last_modified_by", input.last_modified_by))
1316
1318
  if input.plaintext is not None:
1317
1319
  query_params.append(("plaintext", input.plaintext))
1320
+ if input.dimension_match_strategy is not None:
1321
+ query_params.append(("dimension_match_strategy", input.dimension_match_strategy))
1318
1322
 
1319
1323
  query = join_query_params(params=query_params, prefix=query)
1320
1324
 
@@ -1444,6 +1448,10 @@ async def _serialize_list_experiment(input: ListExperimentInput, config: Config)
1444
1448
  query_params.append(("sort_on", input.sort_on))
1445
1449
  if input.sort_by is not None:
1446
1450
  query_params.append(("sort_by", input.sort_by))
1451
+ if input.global_experiments_only is not None:
1452
+ query_params.append(("global_experiments_only", ('true' if input.global_experiments_only else 'false')))
1453
+ if input.dimension_match_strategy is not None:
1454
+ query_params.append(("dimension_match_strategy", input.dimension_match_strategy))
1447
1455
 
1448
1456
  query = join_query_params(params=query_params, prefix=query)
1449
1457
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: superposition_sdk
3
- Version: 0.88.1
3
+ Version: 0.90.0
4
4
  Summary: superposition_sdk client
5
5
  License: Apache-2.0
6
6
  Keywords: smithy,superposition_sdk
@@ -0,0 +1,12 @@
1
+ superposition_sdk/__init__.py,sha256=Inc_oe2U1CzZ_ZxsNVbU96RGaAlD-6M5xt1ZcW5hGUo,83
2
+ superposition_sdk/auth.py,sha256=U9D3FmOH8TX0cjibGy_CRnAkTnFEavAek0Jw1YUhN2g,404
3
+ superposition_sdk/client.py,sha256=SICMUtPJo3H_xYFXcofHZVZoRiYq_zFO7sMZP9Z5BHs,94384
4
+ superposition_sdk/config.py,sha256=elPULtcHP7am9Wk7VqIpzPMNlcQIdH1Do9gNeAkqdHM,11425
5
+ superposition_sdk/deserialize.py,sha256=fVUcHo_BtWwtINcbBWGXDVo0GmSPT0pEyDwEB6Jf82Y,77499
6
+ superposition_sdk/models.py,sha256=nCXDv7TbHlkpgGa2QVyrpQO4OeWG7B2Gvdyti8S6KyM,558282
7
+ superposition_sdk/serialize.py,sha256=aaQOAoA-_HaFl0Zl5cC2JSPebG4oE0OH1Izj1wy3p78,73276
8
+ superposition_sdk/_private/__init__.py,sha256=DxsJq42a0KfQv9zzLrqT0JVpoXrR-IDIYFGuJe4g1Gc,55
9
+ superposition_sdk/_private/schemas.py,sha256=yYRHmaV4cGcS5Uhl5Bd9E-_F6DOqVpZAcEuXF5c8htA,304873
10
+ superposition_sdk-0.90.0.dist-info/METADATA,sha256=GN3aALrIX1Tk2Rpkp31BFHNarYjXkpFD-skgm11E59M,2280
11
+ superposition_sdk-0.90.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
+ superposition_sdk-0.90.0.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- superposition_sdk/__init__.py,sha256=Inc_oe2U1CzZ_ZxsNVbU96RGaAlD-6M5xt1ZcW5hGUo,83
2
- superposition_sdk/auth.py,sha256=U9D3FmOH8TX0cjibGy_CRnAkTnFEavAek0Jw1YUhN2g,404
3
- superposition_sdk/client.py,sha256=mas4nI_bk32FXVUQMlOSa-S1Y4ewY8GIoDCIsy6kCCM,88710
4
- superposition_sdk/config.py,sha256=elPULtcHP7am9Wk7VqIpzPMNlcQIdH1Do9gNeAkqdHM,11425
5
- superposition_sdk/deserialize.py,sha256=fVUcHo_BtWwtINcbBWGXDVo0GmSPT0pEyDwEB6Jf82Y,77499
6
- superposition_sdk/models.py,sha256=JNV6ts9ouu_brSMfifEmOwBiIBLlawXFmjQfRv-UNeI,545296
7
- superposition_sdk/serialize.py,sha256=5naLDkPY1SBrHIuU_SGj05TCLcx7jR59BGy65tHYk58,72728
8
- superposition_sdk/_private/__init__.py,sha256=DxsJq42a0KfQv9zzLrqT0JVpoXrR-IDIYFGuJe4g1Gc,55
9
- superposition_sdk/_private/schemas.py,sha256=9UZVCgCoo4t7SnD0paDSSZXw3kLSNpt0fq0l8GrJ83Y,303088
10
- superposition_sdk-0.88.1.dist-info/METADATA,sha256=TfFDhs-2CuuKSX7JDko3qU2q5Z15uerBgK2DeTguDRs,2280
11
- superposition_sdk-0.88.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
- superposition_sdk-0.88.1.dist-info/RECORD,,