@cellaware/utils 3.4.35 → 3.4.36
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 -3
- package/dist/azure/cosmos.js +3 -3
- package/package.json +1 -1
package/dist/azure/cosmos.d.ts
CHANGED
|
@@ -65,19 +65,19 @@ export declare function getCosmosTimestampMinute(timeZone?: string): string;
|
|
|
65
65
|
*/
|
|
66
66
|
export declare function getCosmosTimestampSecond(timeZone?: string): string;
|
|
67
67
|
/**
|
|
68
|
-
* Returns a `WHERE` clause to retrieve records with a `_ts` of today
|
|
68
|
+
* Returns a `WHERE` clause condition to retrieve records with a `_ts` of today
|
|
69
69
|
*
|
|
70
70
|
* NOTE: default time zone is UTC
|
|
71
71
|
*/
|
|
72
72
|
export declare function getCosmosCurrentDayWhereClause(timeZone?: string): string;
|
|
73
73
|
/**
|
|
74
|
-
* Returns a `WHERE` clause to retrieve records with a `_ts` of this month
|
|
74
|
+
* Returns a `WHERE` clause condition to retrieve records with a `_ts` of this month
|
|
75
75
|
*
|
|
76
76
|
* NOTE: default time zone is UTC
|
|
77
77
|
*/
|
|
78
78
|
export declare function getCosmosCurrentMonthWhereClause(timeZone?: string): string;
|
|
79
79
|
/**
|
|
80
|
-
* Returns a `WHERE` clause to retrieve records with a `_ts` of this year
|
|
80
|
+
* Returns a `WHERE` clause condition to retrieve records with a `_ts` of this year
|
|
81
81
|
*
|
|
82
82
|
* NOTE: default time zone is UTC
|
|
83
83
|
*/
|
package/dist/azure/cosmos.js
CHANGED
|
@@ -117,7 +117,7 @@ export function getCosmosTimestampSecond(timeZone) {
|
|
|
117
117
|
return `DateTimePart('ss', ${getCosmosTimestampDateTime(timeZone)})`;
|
|
118
118
|
}
|
|
119
119
|
/**
|
|
120
|
-
* Returns a `WHERE` clause to retrieve records with a `_ts` of today
|
|
120
|
+
* Returns a `WHERE` clause condition to retrieve records with a `_ts` of today
|
|
121
121
|
*
|
|
122
122
|
* NOTE: default time zone is UTC
|
|
123
123
|
*/
|
|
@@ -125,7 +125,7 @@ export function getCosmosCurrentDayWhereClause(timeZone) {
|
|
|
125
125
|
return `DateTimeDiff('dd', ${getCosmosTimestampDateTime(timeZone)}, ${getCosmosCurrentDateTime(timeZone)}) = 0`;
|
|
126
126
|
}
|
|
127
127
|
/**
|
|
128
|
-
* Returns a `WHERE` clause to retrieve records with a `_ts` of this month
|
|
128
|
+
* Returns a `WHERE` clause condition to retrieve records with a `_ts` of this month
|
|
129
129
|
*
|
|
130
130
|
* NOTE: default time zone is UTC
|
|
131
131
|
*/
|
|
@@ -133,7 +133,7 @@ export function getCosmosCurrentMonthWhereClause(timeZone) {
|
|
|
133
133
|
return `DateTimeDiff('mm', ${getCosmosTimestampDateTime(timeZone)}, ${getCosmosCurrentDateTime(timeZone)}) = 0`;
|
|
134
134
|
}
|
|
135
135
|
/**
|
|
136
|
-
* Returns a `WHERE` clause to retrieve records with a `_ts` of this year
|
|
136
|
+
* Returns a `WHERE` clause condition to retrieve records with a `_ts` of this year
|
|
137
137
|
*
|
|
138
138
|
* NOTE: default time zone is UTC
|
|
139
139
|
*/
|