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