Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/models/Filter.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ export declare class Filter {
}[];
constructor();
}
export type FilterRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt";
export type FilterRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt" | "in_array" | "not_in_array";
2 changes: 1 addition & 1 deletion dist/models/FilterExpression.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ export declare class FilterExpression {
}[];
constructor();
}
export type FilterExpressionRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt";
export type FilterExpressionRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt" | "in_array" | "not_in_array";
export type FilterExpressionOperatorEnum = "OR" | "AND";
4 changes: 2 additions & 2 deletions models/Filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class Filter {
*/
'key'?: string;
/**
* Constant value to use as the second operand in the filter expression. This value is *required* when the relation operator is a binary operator.
* Constant value to use as the second operand in the filter expression. This value is *required* when the relation operator is a binary operator. For `in_array` and `not_in_array` relations, provide a comma-separated list of up to 20 values.
*/
'value'?: string;
/**
Expand Down Expand Up @@ -103,5 +103,5 @@ export class Filter {
}


export type FilterRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt" ;
export type FilterRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt" | "in_array" | "not_in_array" ;

4 changes: 2 additions & 2 deletions models/FilterExpression.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class FilterExpression {
*/
'key'?: string;
/**
* Constant value to use as the second operand in the filter expression. This value is *required* when the relation operator is a binary operator.
* Constant value to use as the second operand in the filter expression. This value is *required* when the relation operator is a binary operator. For `in_array` and `not_in_array` relations, provide a comma-separated list of up to 20 values.
*/
'value'?: string;
/**
Expand Down Expand Up @@ -115,6 +115,6 @@ export class FilterExpression {
}


export type FilterExpressionRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt" ;
export type FilterExpressionRelationEnum = ">" | "<" | "=" | "!=" | "exists" | "not_exists" | "time_elapsed_gt" | "time_elapsed_lt" | "in_array" | "not_in_array" ;
export type FilterExpressionOperatorEnum = "OR" | "AND" ;

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onesignal/node-onesignal",
"version": "5.11.0",
"version": "5.10.0",
"description": "OpenAPI client for @onesignal/node-onesignal",
"author": "OpenAPI-Generator Contributors",
"keywords": [
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"target": "es2020",
"module": "commonjs",
"esModuleInterop": true,
"moduleResolution": "node",
"declaration": true,

/* Additional Checks */
Expand Down