@uniformdev/context 20.50.2-alpha.167 → 20.50.2-alpha.180

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.
@@ -1831,11 +1831,9 @@ declare class AggregateClient extends ApiClient {
1831
1831
  /** Deletes an Aggregate */
1832
1832
  remove(body: ExceptProject<AggregateDeleteParameters>): Promise<void>;
1833
1833
  }
1834
- /** @deprecated Pass `bypassCache: true` to {@link AggregateClient} instead. */
1835
1834
  declare class UncachedAggregateClient extends AggregateClient {
1836
1835
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1837
1836
  }
1838
- /** @deprecated Pass `bypassCache: false` to {@link AggregateClient} instead. */
1839
1837
  declare class CachedAggregateClient extends AggregateClient {
1840
1838
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1841
1839
  }
@@ -1857,11 +1855,9 @@ declare class DimensionClient extends ApiClient {
1857
1855
  /** Fetches the known score dimensions for a project */
1858
1856
  get(options?: ExceptProject<DimensionGetParameters>): Promise<DimensionGetResponse>;
1859
1857
  }
1860
- /** @deprecated Pass `bypassCache: true` to {@link DimensionClient} instead. */
1861
1858
  declare class UncachedDimensionClient extends DimensionClient {
1862
1859
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1863
1860
  }
1864
- /** @deprecated Pass `bypassCache: false` to {@link DimensionClient} instead. */
1865
1861
  declare class CachedDimensionClient extends DimensionClient {
1866
1862
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1867
1863
  }
@@ -1880,11 +1876,9 @@ declare class EnrichmentClient extends ApiClient {
1880
1876
  /** Deletes an enrichment value within an enrichment category. The category is left alone. */
1881
1877
  removeValue(body: ExceptProject<EnrichmentValueDeleteParameters>): Promise<void>;
1882
1878
  }
1883
- /** @deprecated Pass `bypassCache: true` to {@link EnrichmentClient} instead. */
1884
1879
  declare class UncachedEnrichmentClient extends EnrichmentClient {
1885
1880
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1886
1881
  }
1887
- /** @deprecated Pass `bypassCache: false` to {@link EnrichmentClient} instead. */
1888
1882
  declare class CachedEnrichmentClient extends EnrichmentClient {
1889
1883
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1890
1884
  }
@@ -1897,11 +1891,9 @@ declare class ManifestClient extends ApiClient {
1897
1891
  /** Publishes the Context manifest for a project */
1898
1892
  publish(): Promise<void>;
1899
1893
  }
1900
- /** @deprecated Pass `bypassCache: true` to {@link ManifestClient} instead. */
1901
1894
  declare class UncachedManifestClient extends ManifestClient {
1902
1895
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1903
1896
  }
1904
- /** @deprecated Pass `bypassCache: false` to {@link ManifestClient} instead. */
1905
1897
  declare class CachedManifestClient extends ManifestClient {
1906
1898
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1907
1899
  }
@@ -1916,11 +1908,9 @@ declare class QuirkClient extends ApiClient {
1916
1908
  /** Deletes a Quirk */
1917
1909
  remove(body: ExceptProject<QuirkDeleteParameters>): Promise<void>;
1918
1910
  }
1919
- /** @deprecated Pass `bypassCache: true` to {@link QuirkClient} instead. */
1920
1911
  declare class UncachedQuirkClient extends QuirkClient {
1921
1912
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1922
1913
  }
1923
- /** @deprecated Pass `bypassCache: false` to {@link QuirkClient} instead. */
1924
1914
  declare class CachedQuirkClient extends QuirkClient {
1925
1915
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1926
1916
  }
@@ -1935,11 +1925,9 @@ declare class SignalClient extends ApiClient {
1935
1925
  /** Deletes a Signal */
1936
1926
  remove(body: ExceptProject<SignalDeleteParameters>): Promise<void>;
1937
1927
  }
1938
- /** @deprecated Pass `bypassCache: true` to {@link SignalClient} instead. */
1939
1928
  declare class UncachedSignalClient extends SignalClient {
1940
1929
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1941
1930
  }
1942
- /** @deprecated Pass `bypassCache: false` to {@link SignalClient} instead. */
1943
1931
  declare class CachedSignalClient extends SignalClient {
1944
1932
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1945
1933
  }
@@ -1954,11 +1942,9 @@ declare class TestClient extends ApiClient {
1954
1942
  /** Deletes a Test */
1955
1943
  remove(body: ExceptProject<TestDeleteParameters>): Promise<void>;
1956
1944
  }
1957
- /** @deprecated Pass `bypassCache: true` to {@link TestClient} instead. */
1958
1945
  declare class UncachedTestClient extends TestClient {
1959
1946
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1960
1947
  }
1961
- /** @deprecated Pass `bypassCache: false` to {@link TestClient} instead. */
1962
1948
  declare class CachedTestClient extends TestClient {
1963
1949
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1964
1950
  }
@@ -1973,11 +1959,9 @@ declare class ContextClient {
1973
1959
  readonly signals: SignalClient;
1974
1960
  readonly tests: TestClient;
1975
1961
  }
1976
- /** @deprecated Pass `bypassCache: true` to {@link ContextClient} instead. */
1977
1962
  declare class UncachedContextClient extends ContextClient {
1978
1963
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1979
1964
  }
1980
- /** @deprecated Pass `bypassCache: false` to {@link ContextClient} instead. */
1981
1965
  declare class CachedContextClient extends ContextClient {
1982
1966
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1983
1967
  }
package/dist/api/api.d.ts CHANGED
@@ -1831,11 +1831,9 @@ declare class AggregateClient extends ApiClient {
1831
1831
  /** Deletes an Aggregate */
1832
1832
  remove(body: ExceptProject<AggregateDeleteParameters>): Promise<void>;
1833
1833
  }
1834
- /** @deprecated Pass `bypassCache: true` to {@link AggregateClient} instead. */
1835
1834
  declare class UncachedAggregateClient extends AggregateClient {
1836
1835
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1837
1836
  }
1838
- /** @deprecated Pass `bypassCache: false` to {@link AggregateClient} instead. */
1839
1837
  declare class CachedAggregateClient extends AggregateClient {
1840
1838
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1841
1839
  }
@@ -1857,11 +1855,9 @@ declare class DimensionClient extends ApiClient {
1857
1855
  /** Fetches the known score dimensions for a project */
1858
1856
  get(options?: ExceptProject<DimensionGetParameters>): Promise<DimensionGetResponse>;
1859
1857
  }
1860
- /** @deprecated Pass `bypassCache: true` to {@link DimensionClient} instead. */
1861
1858
  declare class UncachedDimensionClient extends DimensionClient {
1862
1859
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1863
1860
  }
1864
- /** @deprecated Pass `bypassCache: false` to {@link DimensionClient} instead. */
1865
1861
  declare class CachedDimensionClient extends DimensionClient {
1866
1862
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1867
1863
  }
@@ -1880,11 +1876,9 @@ declare class EnrichmentClient extends ApiClient {
1880
1876
  /** Deletes an enrichment value within an enrichment category. The category is left alone. */
1881
1877
  removeValue(body: ExceptProject<EnrichmentValueDeleteParameters>): Promise<void>;
1882
1878
  }
1883
- /** @deprecated Pass `bypassCache: true` to {@link EnrichmentClient} instead. */
1884
1879
  declare class UncachedEnrichmentClient extends EnrichmentClient {
1885
1880
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1886
1881
  }
1887
- /** @deprecated Pass `bypassCache: false` to {@link EnrichmentClient} instead. */
1888
1882
  declare class CachedEnrichmentClient extends EnrichmentClient {
1889
1883
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1890
1884
  }
@@ -1897,11 +1891,9 @@ declare class ManifestClient extends ApiClient {
1897
1891
  /** Publishes the Context manifest for a project */
1898
1892
  publish(): Promise<void>;
1899
1893
  }
1900
- /** @deprecated Pass `bypassCache: true` to {@link ManifestClient} instead. */
1901
1894
  declare class UncachedManifestClient extends ManifestClient {
1902
1895
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1903
1896
  }
1904
- /** @deprecated Pass `bypassCache: false` to {@link ManifestClient} instead. */
1905
1897
  declare class CachedManifestClient extends ManifestClient {
1906
1898
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1907
1899
  }
@@ -1916,11 +1908,9 @@ declare class QuirkClient extends ApiClient {
1916
1908
  /** Deletes a Quirk */
1917
1909
  remove(body: ExceptProject<QuirkDeleteParameters>): Promise<void>;
1918
1910
  }
1919
- /** @deprecated Pass `bypassCache: true` to {@link QuirkClient} instead. */
1920
1911
  declare class UncachedQuirkClient extends QuirkClient {
1921
1912
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1922
1913
  }
1923
- /** @deprecated Pass `bypassCache: false` to {@link QuirkClient} instead. */
1924
1914
  declare class CachedQuirkClient extends QuirkClient {
1925
1915
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1926
1916
  }
@@ -1935,11 +1925,9 @@ declare class SignalClient extends ApiClient {
1935
1925
  /** Deletes a Signal */
1936
1926
  remove(body: ExceptProject<SignalDeleteParameters>): Promise<void>;
1937
1927
  }
1938
- /** @deprecated Pass `bypassCache: true` to {@link SignalClient} instead. */
1939
1928
  declare class UncachedSignalClient extends SignalClient {
1940
1929
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1941
1930
  }
1942
- /** @deprecated Pass `bypassCache: false` to {@link SignalClient} instead. */
1943
1931
  declare class CachedSignalClient extends SignalClient {
1944
1932
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1945
1933
  }
@@ -1954,11 +1942,9 @@ declare class TestClient extends ApiClient {
1954
1942
  /** Deletes a Test */
1955
1943
  remove(body: ExceptProject<TestDeleteParameters>): Promise<void>;
1956
1944
  }
1957
- /** @deprecated Pass `bypassCache: true` to {@link TestClient} instead. */
1958
1945
  declare class UncachedTestClient extends TestClient {
1959
1946
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1960
1947
  }
1961
- /** @deprecated Pass `bypassCache: false` to {@link TestClient} instead. */
1962
1948
  declare class CachedTestClient extends TestClient {
1963
1949
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1964
1950
  }
@@ -1973,11 +1959,9 @@ declare class ContextClient {
1973
1959
  readonly signals: SignalClient;
1974
1960
  readonly tests: TestClient;
1975
1961
  }
1976
- /** @deprecated Pass `bypassCache: true` to {@link ContextClient} instead. */
1977
1962
  declare class UncachedContextClient extends ContextClient {
1978
1963
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1979
1964
  }
1980
- /** @deprecated Pass `bypassCache: false` to {@link ContextClient} instead. */
1981
1965
  declare class CachedContextClient extends ContextClient {
1982
1966
  constructor(options: Omit<ClientOptions, 'bypassCache'>);
1983
1967
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context",
3
- "version": "20.50.2-alpha.167+74e60d5bb7",
3
+ "version": "20.50.2-alpha.180+0be2307590",
4
4
  "description": "Uniform Context core package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -70,5 +70,5 @@
70
70
  "publishConfig": {
71
71
  "access": "public"
72
72
  },
73
- "gitHead": "74e60d5bb79fe1c4d446e4d3e6edf9f08850be4f"
73
+ "gitHead": "0be23075901a6fd0acd8166a2bea65fbd5589789"
74
74
  }