From 4ab0e83d012c67d9f8aa1e5d0a1b6be3b795093a Mon Sep 17 00:00:00 2001 From: OneSignal Date: Fri, 17 Jul 2026 21:21:27 +0000 Subject: [PATCH] feat: add v5.10.0 package updates --- dist/models/Filter.d.ts | 2 +- dist/models/FilterExpression.d.ts | 2 +- models/Filter.ts | 4 ++-- models/FilterExpression.ts | 4 ++-- package.json | 2 +- tsconfig.json | 1 - 6 files changed, 7 insertions(+), 8 deletions(-) diff --git a/dist/models/Filter.d.ts b/dist/models/Filter.d.ts index 007da98..3312b52 100644 --- a/dist/models/Filter.d.ts +++ b/dist/models/Filter.d.ts @@ -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"; diff --git a/dist/models/FilterExpression.d.ts b/dist/models/FilterExpression.d.ts index b50e024..b3a2c80 100644 --- a/dist/models/FilterExpression.d.ts +++ b/dist/models/FilterExpression.d.ts @@ -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"; diff --git a/models/Filter.ts b/models/Filter.ts index c27d480..afa5b42 100644 --- a/models/Filter.ts +++ b/models/Filter.ts @@ -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; /** @@ -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" ; diff --git a/models/FilterExpression.ts b/models/FilterExpression.ts index 6f4875e..396c8b9 100644 --- a/models/FilterExpression.ts +++ b/models/FilterExpression.ts @@ -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; /** @@ -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" ; diff --git a/package.json b/package.json index 8ca36a8..943a673 100644 --- a/package.json +++ b/package.json @@ -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": [ diff --git a/tsconfig.json b/tsconfig.json index bd4d911..a4f47ca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,6 @@ "target": "es2020", "module": "commonjs", "esModuleInterop": true, - "moduleResolution": "node", "declaration": true, /* Additional Checks */