@uniformdev/context 20.74.6-alpha.3 → 20.74.7
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/api/api.d.mts +16 -0
- package/dist/api/api.d.ts +16 -0
- package/package.json +2 -2
package/dist/api/api.d.mts
CHANGED
|
@@ -1843,9 +1843,11 @@ declare class AggregateClient extends ApiClient {
|
|
|
1843
1843
|
/** Deletes an Aggregate */
|
|
1844
1844
|
remove(body: ExceptProject<AggregateDeleteParameters>): Promise<void>;
|
|
1845
1845
|
}
|
|
1846
|
+
/** @deprecated Pass `bypassCache: true` to {@link AggregateClient} instead. */
|
|
1846
1847
|
declare class UncachedAggregateClient extends AggregateClient {
|
|
1847
1848
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1848
1849
|
}
|
|
1850
|
+
/** @deprecated Pass `bypassCache: false` to {@link AggregateClient} instead. */
|
|
1849
1851
|
declare class CachedAggregateClient extends AggregateClient {
|
|
1850
1852
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1851
1853
|
}
|
|
@@ -1867,9 +1869,11 @@ declare class DimensionClient extends ApiClient {
|
|
|
1867
1869
|
/** Fetches the known score dimensions for a project */
|
|
1868
1870
|
get(options?: ExceptProject<DimensionGetParameters>): Promise<DimensionGetResponse>;
|
|
1869
1871
|
}
|
|
1872
|
+
/** @deprecated Pass `bypassCache: true` to {@link DimensionClient} instead. */
|
|
1870
1873
|
declare class UncachedDimensionClient extends DimensionClient {
|
|
1871
1874
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1872
1875
|
}
|
|
1876
|
+
/** @deprecated Pass `bypassCache: false` to {@link DimensionClient} instead. */
|
|
1873
1877
|
declare class CachedDimensionClient extends DimensionClient {
|
|
1874
1878
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1875
1879
|
}
|
|
@@ -1888,9 +1892,11 @@ declare class EnrichmentClient extends ApiClient {
|
|
|
1888
1892
|
/** Deletes an enrichment value within an enrichment category. The category is left alone. */
|
|
1889
1893
|
removeValue(body: ExceptProject<EnrichmentValueDeleteParameters>): Promise<void>;
|
|
1890
1894
|
}
|
|
1895
|
+
/** @deprecated Pass `bypassCache: true` to {@link EnrichmentClient} instead. */
|
|
1891
1896
|
declare class UncachedEnrichmentClient extends EnrichmentClient {
|
|
1892
1897
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1893
1898
|
}
|
|
1899
|
+
/** @deprecated Pass `bypassCache: false` to {@link EnrichmentClient} instead. */
|
|
1894
1900
|
declare class CachedEnrichmentClient extends EnrichmentClient {
|
|
1895
1901
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1896
1902
|
}
|
|
@@ -1903,9 +1909,11 @@ declare class ManifestClient extends ApiClient {
|
|
|
1903
1909
|
/** Publishes the Context manifest for a project */
|
|
1904
1910
|
publish(): Promise<void>;
|
|
1905
1911
|
}
|
|
1912
|
+
/** @deprecated Pass `bypassCache: true` to {@link ManifestClient} instead. */
|
|
1906
1913
|
declare class UncachedManifestClient extends ManifestClient {
|
|
1907
1914
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1908
1915
|
}
|
|
1916
|
+
/** @deprecated Pass `bypassCache: false` to {@link ManifestClient} instead. */
|
|
1909
1917
|
declare class CachedManifestClient extends ManifestClient {
|
|
1910
1918
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1911
1919
|
}
|
|
@@ -1920,9 +1928,11 @@ declare class QuirkClient extends ApiClient {
|
|
|
1920
1928
|
/** Deletes a Quirk */
|
|
1921
1929
|
remove(body: ExceptProject<QuirkDeleteParameters>): Promise<void>;
|
|
1922
1930
|
}
|
|
1931
|
+
/** @deprecated Pass `bypassCache: true` to {@link QuirkClient} instead. */
|
|
1923
1932
|
declare class UncachedQuirkClient extends QuirkClient {
|
|
1924
1933
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1925
1934
|
}
|
|
1935
|
+
/** @deprecated Pass `bypassCache: false` to {@link QuirkClient} instead. */
|
|
1926
1936
|
declare class CachedQuirkClient extends QuirkClient {
|
|
1927
1937
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1928
1938
|
}
|
|
@@ -1937,9 +1947,11 @@ declare class SignalClient extends ApiClient {
|
|
|
1937
1947
|
/** Deletes a Signal */
|
|
1938
1948
|
remove(body: ExceptProject<SignalDeleteParameters>): Promise<void>;
|
|
1939
1949
|
}
|
|
1950
|
+
/** @deprecated Pass `bypassCache: true` to {@link SignalClient} instead. */
|
|
1940
1951
|
declare class UncachedSignalClient extends SignalClient {
|
|
1941
1952
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1942
1953
|
}
|
|
1954
|
+
/** @deprecated Pass `bypassCache: false` to {@link SignalClient} instead. */
|
|
1943
1955
|
declare class CachedSignalClient extends SignalClient {
|
|
1944
1956
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1945
1957
|
}
|
|
@@ -1954,9 +1966,11 @@ declare class TestClient extends ApiClient {
|
|
|
1954
1966
|
/** Deletes a Test */
|
|
1955
1967
|
remove(body: ExceptProject<TestDeleteParameters>): Promise<void>;
|
|
1956
1968
|
}
|
|
1969
|
+
/** @deprecated Pass `bypassCache: true` to {@link TestClient} instead. */
|
|
1957
1970
|
declare class UncachedTestClient extends TestClient {
|
|
1958
1971
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1959
1972
|
}
|
|
1973
|
+
/** @deprecated Pass `bypassCache: false` to {@link TestClient} instead. */
|
|
1960
1974
|
declare class CachedTestClient extends TestClient {
|
|
1961
1975
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1962
1976
|
}
|
|
@@ -1971,9 +1985,11 @@ declare class ContextClient {
|
|
|
1971
1985
|
readonly signals: SignalClient;
|
|
1972
1986
|
readonly tests: TestClient;
|
|
1973
1987
|
}
|
|
1988
|
+
/** @deprecated Pass `bypassCache: true` to {@link ContextClient} instead. */
|
|
1974
1989
|
declare class UncachedContextClient extends ContextClient {
|
|
1975
1990
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1976
1991
|
}
|
|
1992
|
+
/** @deprecated Pass `bypassCache: false` to {@link ContextClient} instead. */
|
|
1977
1993
|
declare class CachedContextClient extends ContextClient {
|
|
1978
1994
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1979
1995
|
}
|
package/dist/api/api.d.ts
CHANGED
|
@@ -1843,9 +1843,11 @@ declare class AggregateClient extends ApiClient {
|
|
|
1843
1843
|
/** Deletes an Aggregate */
|
|
1844
1844
|
remove(body: ExceptProject<AggregateDeleteParameters>): Promise<void>;
|
|
1845
1845
|
}
|
|
1846
|
+
/** @deprecated Pass `bypassCache: true` to {@link AggregateClient} instead. */
|
|
1846
1847
|
declare class UncachedAggregateClient extends AggregateClient {
|
|
1847
1848
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1848
1849
|
}
|
|
1850
|
+
/** @deprecated Pass `bypassCache: false` to {@link AggregateClient} instead. */
|
|
1849
1851
|
declare class CachedAggregateClient extends AggregateClient {
|
|
1850
1852
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1851
1853
|
}
|
|
@@ -1867,9 +1869,11 @@ declare class DimensionClient extends ApiClient {
|
|
|
1867
1869
|
/** Fetches the known score dimensions for a project */
|
|
1868
1870
|
get(options?: ExceptProject<DimensionGetParameters>): Promise<DimensionGetResponse>;
|
|
1869
1871
|
}
|
|
1872
|
+
/** @deprecated Pass `bypassCache: true` to {@link DimensionClient} instead. */
|
|
1870
1873
|
declare class UncachedDimensionClient extends DimensionClient {
|
|
1871
1874
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1872
1875
|
}
|
|
1876
|
+
/** @deprecated Pass `bypassCache: false` to {@link DimensionClient} instead. */
|
|
1873
1877
|
declare class CachedDimensionClient extends DimensionClient {
|
|
1874
1878
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1875
1879
|
}
|
|
@@ -1888,9 +1892,11 @@ declare class EnrichmentClient extends ApiClient {
|
|
|
1888
1892
|
/** Deletes an enrichment value within an enrichment category. The category is left alone. */
|
|
1889
1893
|
removeValue(body: ExceptProject<EnrichmentValueDeleteParameters>): Promise<void>;
|
|
1890
1894
|
}
|
|
1895
|
+
/** @deprecated Pass `bypassCache: true` to {@link EnrichmentClient} instead. */
|
|
1891
1896
|
declare class UncachedEnrichmentClient extends EnrichmentClient {
|
|
1892
1897
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1893
1898
|
}
|
|
1899
|
+
/** @deprecated Pass `bypassCache: false` to {@link EnrichmentClient} instead. */
|
|
1894
1900
|
declare class CachedEnrichmentClient extends EnrichmentClient {
|
|
1895
1901
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1896
1902
|
}
|
|
@@ -1903,9 +1909,11 @@ declare class ManifestClient extends ApiClient {
|
|
|
1903
1909
|
/** Publishes the Context manifest for a project */
|
|
1904
1910
|
publish(): Promise<void>;
|
|
1905
1911
|
}
|
|
1912
|
+
/** @deprecated Pass `bypassCache: true` to {@link ManifestClient} instead. */
|
|
1906
1913
|
declare class UncachedManifestClient extends ManifestClient {
|
|
1907
1914
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1908
1915
|
}
|
|
1916
|
+
/** @deprecated Pass `bypassCache: false` to {@link ManifestClient} instead. */
|
|
1909
1917
|
declare class CachedManifestClient extends ManifestClient {
|
|
1910
1918
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1911
1919
|
}
|
|
@@ -1920,9 +1928,11 @@ declare class QuirkClient extends ApiClient {
|
|
|
1920
1928
|
/** Deletes a Quirk */
|
|
1921
1929
|
remove(body: ExceptProject<QuirkDeleteParameters>): Promise<void>;
|
|
1922
1930
|
}
|
|
1931
|
+
/** @deprecated Pass `bypassCache: true` to {@link QuirkClient} instead. */
|
|
1923
1932
|
declare class UncachedQuirkClient extends QuirkClient {
|
|
1924
1933
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1925
1934
|
}
|
|
1935
|
+
/** @deprecated Pass `bypassCache: false` to {@link QuirkClient} instead. */
|
|
1926
1936
|
declare class CachedQuirkClient extends QuirkClient {
|
|
1927
1937
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1928
1938
|
}
|
|
@@ -1937,9 +1947,11 @@ declare class SignalClient extends ApiClient {
|
|
|
1937
1947
|
/** Deletes a Signal */
|
|
1938
1948
|
remove(body: ExceptProject<SignalDeleteParameters>): Promise<void>;
|
|
1939
1949
|
}
|
|
1950
|
+
/** @deprecated Pass `bypassCache: true` to {@link SignalClient} instead. */
|
|
1940
1951
|
declare class UncachedSignalClient extends SignalClient {
|
|
1941
1952
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1942
1953
|
}
|
|
1954
|
+
/** @deprecated Pass `bypassCache: false` to {@link SignalClient} instead. */
|
|
1943
1955
|
declare class CachedSignalClient extends SignalClient {
|
|
1944
1956
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1945
1957
|
}
|
|
@@ -1954,9 +1966,11 @@ declare class TestClient extends ApiClient {
|
|
|
1954
1966
|
/** Deletes a Test */
|
|
1955
1967
|
remove(body: ExceptProject<TestDeleteParameters>): Promise<void>;
|
|
1956
1968
|
}
|
|
1969
|
+
/** @deprecated Pass `bypassCache: true` to {@link TestClient} instead. */
|
|
1957
1970
|
declare class UncachedTestClient extends TestClient {
|
|
1958
1971
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1959
1972
|
}
|
|
1973
|
+
/** @deprecated Pass `bypassCache: false` to {@link TestClient} instead. */
|
|
1960
1974
|
declare class CachedTestClient extends TestClient {
|
|
1961
1975
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1962
1976
|
}
|
|
@@ -1971,9 +1985,11 @@ declare class ContextClient {
|
|
|
1971
1985
|
readonly signals: SignalClient;
|
|
1972
1986
|
readonly tests: TestClient;
|
|
1973
1987
|
}
|
|
1988
|
+
/** @deprecated Pass `bypassCache: true` to {@link ContextClient} instead. */
|
|
1974
1989
|
declare class UncachedContextClient extends ContextClient {
|
|
1975
1990
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1976
1991
|
}
|
|
1992
|
+
/** @deprecated Pass `bypassCache: false` to {@link ContextClient} instead. */
|
|
1977
1993
|
declare class CachedContextClient extends ContextClient {
|
|
1978
1994
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
|
1979
1995
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/context",
|
|
3
|
-
"version": "20.74.
|
|
3
|
+
"version": "20.74.7",
|
|
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": "
|
|
73
|
+
"gitHead": "97c2206b4a765c62db9a7d125e2de6b77e982e38"
|
|
74
74
|
}
|