@cellaware/utils 3.2.22 → 3.2.23
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/azure/cosmos.d.ts +3 -0
- package/dist/azure/cosmos.js +3 -0
- package/package.json +1 -1
package/dist/azure/cosmos.d.ts
CHANGED
|
@@ -4,6 +4,9 @@ export declare const COSMOS_CURRENT_MONTH_CLAUSE = "DateTimePart('mm', GetCurren
|
|
|
4
4
|
export declare const COSMOS_RECORD_MONTH_CLAUSE = "DateTimePart('mm', TimestampToDateTime(c._ts*1000))";
|
|
5
5
|
export declare const COSMOS_CURRENT_DAY_CLAUSE = "DateTimePart('dd', GetCurrentDateTime())";
|
|
6
6
|
export declare const COSMOS_RECORD_DAY_CLAUSE = "DateTimePart('dd', TimestampToDateTime(c._ts*1000))";
|
|
7
|
+
export declare const COSMOS_RECORD_HOUR_CLAUSE = "DateTimePart('hh', TimestampToDateTime(c._ts*1000))";
|
|
8
|
+
export declare const COSMOS_RECORD_MINUTE_CLAUSE = "DateTimePart('mi', TimestampToDateTime(c._ts*1000))";
|
|
9
|
+
export declare const COSMOS_RECORD_SECOND_CLAUSE = "DateTimePart('ss', TimestampToDateTime(c._ts*1000))";
|
|
7
10
|
export declare const COSMOS_CURRENT_DAY_CONDITION_CLAUSE = "DateTimeDiff('dd', TimestampToDateTime(c._ts*1000), GetCurrentDateTime()) = 0";
|
|
8
11
|
export declare const COSMOS_CURRENT_MONTH_CONDITION_CLAUSE = "DateTimeDiff('mm', TimestampToDateTime(c._ts*1000), GetCurrentDateTime()) = 0";
|
|
9
12
|
export declare const COSMOS_CURRENT_YEAR_CONDITION_CLAUSE = "DateTimeDiff('yyyy', TimestampToDateTime(c._ts*1000), GetCurrentDateTime()) = 0";
|
package/dist/azure/cosmos.js
CHANGED
|
@@ -5,6 +5,9 @@ export const COSMOS_CURRENT_MONTH_CLAUSE = `DateTimePart('mm', GetCurrentDateTim
|
|
|
5
5
|
export const COSMOS_RECORD_MONTH_CLAUSE = `DateTimePart('mm', TimestampToDateTime(c._ts*1000))`;
|
|
6
6
|
export const COSMOS_CURRENT_DAY_CLAUSE = `DateTimePart('dd', GetCurrentDateTime())`;
|
|
7
7
|
export const COSMOS_RECORD_DAY_CLAUSE = `DateTimePart('dd', TimestampToDateTime(c._ts*1000))`;
|
|
8
|
+
export const COSMOS_RECORD_HOUR_CLAUSE = `DateTimePart('hh', TimestampToDateTime(c._ts*1000))`;
|
|
9
|
+
export const COSMOS_RECORD_MINUTE_CLAUSE = `DateTimePart('mi', TimestampToDateTime(c._ts*1000))`;
|
|
10
|
+
export const COSMOS_RECORD_SECOND_CLAUSE = `DateTimePart('ss', TimestampToDateTime(c._ts*1000))`;
|
|
8
11
|
export const COSMOS_CURRENT_DAY_CONDITION_CLAUSE = `DateTimeDiff('dd', TimestampToDateTime(c._ts*1000), GetCurrentDateTime()) = 0`;
|
|
9
12
|
export const COSMOS_CURRENT_MONTH_CONDITION_CLAUSE = `DateTimeDiff('mm', TimestampToDateTime(c._ts*1000), GetCurrentDateTime()) = 0`;
|
|
10
13
|
export const COSMOS_CURRENT_YEAR_CONDITION_CLAUSE = `DateTimeDiff('yyyy', TimestampToDateTime(c._ts*1000), GetCurrentDateTime()) = 0`;
|