|
1067 | 1067 | )) |
1068 | 1068 | ->param('queries', [], new Providers(), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of ' . APP_LIMIT_ARRAY_PARAMS_SIZE . ' queries are allowed, each ' . APP_LIMIT_ARRAY_ELEMENT_SIZE . ' characters long. You may filter on the following attributes: ' . implode(', ', Providers::ALLOWED_ATTRIBUTES), true) |
1069 | 1069 | ->param('search', '', new Text(256), 'Search term to filter your list results. Max length: 256 chars.', true) |
1070 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 1070 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
1071 | 1071 | ->inject('dbForProject') |
1072 | 1072 | ->inject('response') |
1073 | 1073 | ->action(function (array $queries, string $search, bool $includeTotal, Database $dbForProject, Response $response) { |
|
1136 | 1136 | )) |
1137 | 1137 | ->param('providerId', '', new UID(), 'Provider ID.') |
1138 | 1138 | ->param('queries', [], new Queries([new Limit(), new Offset()]), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Only supported methods are limit and offset', true) |
1139 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 1139 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
1140 | 1140 | ->inject('response') |
1141 | 1141 | ->inject('dbForProject') |
1142 | 1142 | ->inject('locale') |
|
2474 | 2474 | )) |
2475 | 2475 | ->param('queries', [], new Topics(), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of ' . APP_LIMIT_ARRAY_PARAMS_SIZE . ' queries are allowed, each ' . APP_LIMIT_ARRAY_ELEMENT_SIZE . ' characters long. You may filter on the following attributes: ' . implode(', ', Topics::ALLOWED_ATTRIBUTES), true) |
2476 | 2476 | ->param('search', '', new Text(256), 'Search term to filter your list results. Max length: 256 chars.', true) |
2477 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 2477 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
2478 | 2478 | ->inject('dbForProject') |
2479 | 2479 | ->inject('response') |
2480 | 2480 | ->action(function (array $queries, string $search, bool $includeTotal, Database $dbForProject, Response $response) { |
|
2543 | 2543 | )) |
2544 | 2544 | ->param('topicId', '', new UID(), 'Topic ID.') |
2545 | 2545 | ->param('queries', [], new Queries([new Limit(), new Offset()]), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Only supported methods are limit and offset', true) |
2546 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 2546 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
2547 | 2547 | ->inject('response') |
2548 | 2548 | ->inject('dbForProject') |
2549 | 2549 | ->inject('locale') |
|
2877 | 2877 | ->param('topicId', '', new UID(), 'Topic ID. The topic ID subscribed to.') |
2878 | 2878 | ->param('queries', [], new Subscribers(), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of ' . APP_LIMIT_ARRAY_PARAMS_SIZE . ' queries are allowed, each ' . APP_LIMIT_ARRAY_ELEMENT_SIZE . ' characters long. You may filter on the following attributes: ' . implode(', ', Providers::ALLOWED_ATTRIBUTES), true) |
2879 | 2879 | ->param('search', '', new Text(256), 'Search term to filter your list results. Max length: 256 chars.', true) |
2880 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 2880 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
2881 | 2881 | ->inject('dbForProject') |
2882 | 2882 | ->inject('response') |
2883 | 2883 | ->action(function (string $topicId, array $queries, string $search, bool $includeTotal, Database $dbForProject, Response $response) { |
|
2966 | 2966 | )) |
2967 | 2967 | ->param('subscriberId', '', new UID(), 'Subscriber ID.') |
2968 | 2968 | ->param('queries', [], new Queries([new Limit(), new Offset()]), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Only supported methods are limit and offset', true) |
2969 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 2969 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
2970 | 2970 | ->inject('response') |
2971 | 2971 | ->inject('dbForProject') |
2972 | 2972 | ->inject('locale') |
|
3697 | 3697 | )) |
3698 | 3698 | ->param('queries', [], new Messages(), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of ' . APP_LIMIT_ARRAY_PARAMS_SIZE . ' queries are allowed, each ' . APP_LIMIT_ARRAY_ELEMENT_SIZE . ' characters long. You may filter on the following attributes: ' . implode(', ', Messages::ALLOWED_ATTRIBUTES), true) |
3699 | 3699 | ->param('search', '', new Text(256), 'Search term to filter your list results. Max length: 256 chars.', true) |
3700 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 3700 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
3701 | 3701 | ->inject('dbForProject') |
3702 | 3702 | ->inject('response') |
3703 | 3703 | ->action(function (array $queries, string $search, bool $includeTotal, Database $dbForProject, Response $response) { |
|
3766 | 3766 | )) |
3767 | 3767 | ->param('messageId', '', new UID(), 'Message ID.') |
3768 | 3768 | ->param('queries', [], new Queries([new Limit(), new Offset()]), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Only supported methods are limit and offset', true) |
3769 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 3769 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
3770 | 3770 | ->inject('response') |
3771 | 3771 | ->inject('dbForProject') |
3772 | 3772 | ->inject('locale') |
|
3865 | 3865 | )) |
3866 | 3866 | ->param('messageId', '', new UID(), 'Message ID.') |
3867 | 3867 | ->param('queries', [], new Targets(), 'Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of ' . APP_LIMIT_ARRAY_PARAMS_SIZE . ' queries are allowed, each ' . APP_LIMIT_ARRAY_ELEMENT_SIZE . ' characters long. You may filter on the following attributes: ' . implode(', ', Targets::ALLOWED_ATTRIBUTES), true) |
3868 | | - ->param('includeTotal', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
| 3868 | + ->param('total', true, new Boolean(true), 'When set to false, the total count returned will be 0 and will not be calculated.', true) |
3869 | 3869 | ->inject('response') |
3870 | 3870 | ->inject('dbForProject') |
3871 | 3871 | ->action(function (string $messageId, array $queries, bool $includeTotal, Response $response, Database $dbForProject) { |
|
0 commit comments