@wix/gift-vouchers 1.0.6 → 1.0.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/gift-vouchers",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/gift-vouchers_gift-voucher-products": "1.0.
|
|
25
|
-
"@wix/gift-vouchers_gift-vouchers": "1.0.
|
|
24
|
+
"@wix/gift-vouchers_gift-voucher-products": "1.0.5",
|
|
25
|
+
"@wix/gift-vouchers_gift-vouchers": "1.0.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"glob": "^10.4.1",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "815306720807f433354d33d98b7e697b46631d67fb5f197121feb7cd"
|
|
51
51
|
}
|
|
@@ -1899,58 +1899,6 @@ interface GiftCardsQueryResult extends QueryCursorResult$1 {
|
|
|
1899
1899
|
prev: () => Promise<GiftCardsQueryResult>;
|
|
1900
1900
|
}
|
|
1901
1901
|
interface GiftCardsQueryBuilder {
|
|
1902
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1903
|
-
* @param value - Value to compare against.
|
|
1904
|
-
* @documentationMaturity preview
|
|
1905
|
-
*/
|
|
1906
|
-
eq: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1907
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1908
|
-
* @param value - Value to compare against.
|
|
1909
|
-
* @documentationMaturity preview
|
|
1910
|
-
*/
|
|
1911
|
-
ne: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1912
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1913
|
-
* @param value - Value to compare against.
|
|
1914
|
-
* @documentationMaturity preview
|
|
1915
|
-
*/
|
|
1916
|
-
ge: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1917
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1918
|
-
* @param value - Value to compare against.
|
|
1919
|
-
* @documentationMaturity preview
|
|
1920
|
-
*/
|
|
1921
|
-
gt: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1922
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1923
|
-
* @param value - Value to compare against.
|
|
1924
|
-
* @documentationMaturity preview
|
|
1925
|
-
*/
|
|
1926
|
-
le: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1927
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1928
|
-
* @param value - Value to compare against.
|
|
1929
|
-
* @documentationMaturity preview
|
|
1930
|
-
*/
|
|
1931
|
-
lt: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1932
|
-
/** @param propertyName - Property whose value is compared with `string`.
|
|
1933
|
-
* @param string - String to compare against. Case-insensitive.
|
|
1934
|
-
* @documentationMaturity preview
|
|
1935
|
-
*/
|
|
1936
|
-
startsWith: (propertyName: '_id' | 'code', value: string) => GiftCardsQueryBuilder;
|
|
1937
|
-
/** @param propertyName - Property whose value is compared with `values`.
|
|
1938
|
-
* @param values - List of values to compare against.
|
|
1939
|
-
* @documentationMaturity preview
|
|
1940
|
-
*/
|
|
1941
|
-
hasSome: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any[]) => GiftCardsQueryBuilder;
|
|
1942
|
-
/** @documentationMaturity preview */
|
|
1943
|
-
in: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1944
|
-
/** @documentationMaturity preview */
|
|
1945
|
-
exists: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: boolean) => GiftCardsQueryBuilder;
|
|
1946
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1947
|
-
* @documentationMaturity preview
|
|
1948
|
-
*/
|
|
1949
|
-
ascending: (...propertyNames: Array<'_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate'>) => GiftCardsQueryBuilder;
|
|
1950
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1951
|
-
* @documentationMaturity preview
|
|
1952
|
-
*/
|
|
1953
|
-
descending: (...propertyNames: Array<'_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate'>) => GiftCardsQueryBuilder;
|
|
1954
1902
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
1955
1903
|
* @documentationMaturity preview
|
|
1956
1904
|
*/
|
|
@@ -1899,58 +1899,6 @@ interface GiftCardsQueryResult extends QueryCursorResult$1 {
|
|
|
1899
1899
|
prev: () => Promise<GiftCardsQueryResult>;
|
|
1900
1900
|
}
|
|
1901
1901
|
interface GiftCardsQueryBuilder {
|
|
1902
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1903
|
-
* @param value - Value to compare against.
|
|
1904
|
-
* @documentationMaturity preview
|
|
1905
|
-
*/
|
|
1906
|
-
eq: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1907
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1908
|
-
* @param value - Value to compare against.
|
|
1909
|
-
* @documentationMaturity preview
|
|
1910
|
-
*/
|
|
1911
|
-
ne: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1912
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1913
|
-
* @param value - Value to compare against.
|
|
1914
|
-
* @documentationMaturity preview
|
|
1915
|
-
*/
|
|
1916
|
-
ge: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1917
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1918
|
-
* @param value - Value to compare against.
|
|
1919
|
-
* @documentationMaturity preview
|
|
1920
|
-
*/
|
|
1921
|
-
gt: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1922
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1923
|
-
* @param value - Value to compare against.
|
|
1924
|
-
* @documentationMaturity preview
|
|
1925
|
-
*/
|
|
1926
|
-
le: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1927
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
1928
|
-
* @param value - Value to compare against.
|
|
1929
|
-
* @documentationMaturity preview
|
|
1930
|
-
*/
|
|
1931
|
-
lt: (propertyName: 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1932
|
-
/** @param propertyName - Property whose value is compared with `string`.
|
|
1933
|
-
* @param string - String to compare against. Case-insensitive.
|
|
1934
|
-
* @documentationMaturity preview
|
|
1935
|
-
*/
|
|
1936
|
-
startsWith: (propertyName: '_id' | 'code', value: string) => GiftCardsQueryBuilder;
|
|
1937
|
-
/** @param propertyName - Property whose value is compared with `values`.
|
|
1938
|
-
* @param values - List of values to compare against.
|
|
1939
|
-
* @documentationMaturity preview
|
|
1940
|
-
*/
|
|
1941
|
-
hasSome: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any[]) => GiftCardsQueryBuilder;
|
|
1942
|
-
/** @documentationMaturity preview */
|
|
1943
|
-
in: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: any) => GiftCardsQueryBuilder;
|
|
1944
|
-
/** @documentationMaturity preview */
|
|
1945
|
-
exists: (propertyName: '_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate', value: boolean) => GiftCardsQueryBuilder;
|
|
1946
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1947
|
-
* @documentationMaturity preview
|
|
1948
|
-
*/
|
|
1949
|
-
ascending: (...propertyNames: Array<'_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate'>) => GiftCardsQueryBuilder;
|
|
1950
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1951
|
-
* @documentationMaturity preview
|
|
1952
|
-
*/
|
|
1953
|
-
descending: (...propertyNames: Array<'_id' | 'code' | 'initialValue' | 'balance' | 'expirationDate' | '_createdDate' | '_updatedDate'>) => GiftCardsQueryBuilder;
|
|
1954
1902
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
1955
1903
|
* @documentationMaturity preview
|
|
1956
1904
|
*/
|