@@ -72,6 +72,8 @@ class Flows {
72
72
"organizationId" ,
73
73
"userId" ,
74
74
"type" ,
75
+ "active" ,
76
+ "creatorUserId" ,
75
77
"pageSize" ,
76
78
"pageToken" ,
77
79
"orderBy" ,
@@ -238,7 +240,15 @@ class Organizations {
238
240
call : "admin.organizations.list" ,
239
241
method : "GET" ,
240
242
path : "/admin/v1/organizations" ,
241
- query : [ "pageSize" , "pageToken" , "orderBy" , "showDeleted" , "view" ] ,
243
+ query : [
244
+ "displayName" ,
245
+ "email" ,
246
+ "pageSize" ,
247
+ "pageToken" ,
248
+ "orderBy" ,
249
+ "showDeleted" ,
250
+ "view" ,
251
+ ] ,
242
252
idempotent : true ,
243
253
args,
244
254
} ) ;
@@ -416,7 +426,14 @@ class Organizations {
416
426
call : "admin.organizations.listMembers" ,
417
427
method : "GET" ,
418
428
path : "/admin/v1/organizations/{organizationId}/members" ,
419
- query : [ "pageSize" , "pageToken" , "orderBy" ] ,
429
+ query : [
430
+ "displayName" ,
431
+ "email" ,
432
+ "roleId" ,
433
+ "pageSize" ,
434
+ "pageToken" ,
435
+ "orderBy" ,
436
+ ] ,
420
437
idempotent : true ,
421
438
args,
422
439
} ) ;
@@ -595,7 +612,15 @@ class Users {
595
612
call : "admin.users.list" ,
596
613
method : "GET" ,
597
614
path : "/admin/v1/users" ,
598
- query : [ "pageSize" , "pageToken" , "orderBy" , "showDeleted" , "view" ] ,
615
+ query : [
616
+ "displayName" ,
617
+ "email" ,
618
+ "pageSize" ,
619
+ "pageToken" ,
620
+ "orderBy" ,
621
+ "showDeleted" ,
622
+ "view" ,
623
+ ] ,
599
624
idempotent : true ,
600
625
args,
601
626
} ) ;
@@ -837,6 +862,14 @@ interface FlowListInput extends RequestOptions {
837
862
userId ?: string ;
838
863
// Filter the results by the specified flow type.
839
864
type ?: string ;
865
+ // Whether to filter out flows not in the `START_PENDING` or `STARTED`
866
+ // state.
867
+ active ?: boolean ;
868
+ // The identifier of the user that created the flow.
869
+ //
870
+ // When this is specified only the flows created by the user are
871
+ // returned.
872
+ creatorUserId ?: string ;
840
873
// The maximum number of flows to return. The API may return fewer than
841
874
// this value.
842
875
//
@@ -849,12 +882,10 @@ interface FlowListInput extends RequestOptions {
849
882
// When paginating, all other parameters provided to list flows must match
850
883
// the call that provided the page token.
851
884
pageToken ?: string ;
852
- // A comma-separated list of fields to order by, sorted in ascending order.
853
- // Use `desc` after a field name for descending.
885
+ // A comma-separated list of fields to order by.
854
886
//
855
- // Supported fields:
856
- // - `type`
857
- // - `createTime`
887
+ // Supports:
888
+ // - `createTime desc`
858
889
orderBy ?: string ;
859
890
// The Flow view to return in the results.
860
891
//
@@ -959,14 +990,11 @@ interface InvoiceListInput extends RequestOptions {
959
990
// When paginating, all other parameters provided to list invoices must match
960
991
// the call that provided the page token.
961
992
pageToken ?: string ;
962
- // A comma-separated list of fields to order by, sorted in ascending order.
963
- // Use `desc` after a field name for descending.
964
- //
965
- // Supported fields:
966
- // - `state`
967
- // - `dueTime`
968
- // - `createTime`
969
- // - `updateTime`
993
+ // A comma-separated list of fields to order by.
994
+ //
995
+ // Supports:
996
+ // - `createTime asc`
997
+ // - `createTime desc`
970
998
orderBy ?: string ;
971
999
}
972
1000
@@ -987,6 +1015,22 @@ interface InvoiceGetInput extends RequestOptions {
987
1015
* The input options for the `organizations.list` method.
988
1016
*/
989
1017
interface OrganizationListInput extends RequestOptions {
1018
+ // Filter the results by display name.
1019
+ //
1020
+ // To enable prefix filtering append `*` to the end of the value
1021
+ // and ensure you provide at least 3 characters excluding the
1022
+ // wildcard.
1023
+ //
1024
+ // This filter is case-insensitivity.
1025
+ displayName ?: string ;
1026
+ // Filter the results by email address.
1027
+ //
1028
+ // To enable prefix filtering append `*` to the end of the value
1029
+ // and ensure you provide at least 3 characters excluding the
1030
+ // wildcard.
1031
+ //
1032
+ // This filter is case-insensitivity.
1033
+ email ?: string ;
990
1034
// The maximum number of organizations to return. The API may return fewer than
991
1035
// this value.
992
1036
//
@@ -999,14 +1043,14 @@ interface OrganizationListInput extends RequestOptions {
999
1043
// When paginating, all other parameters provided to list organizations must match
1000
1044
// the call that provided the page token.
1001
1045
pageToken ?: string ;
1002
- // A comma-separated list of fields to order by, sorted in ascending order .
1003
- // Use `desc` after a field name for descending.
1004
- //
1005
- // Supported fields:
1006
- // - `displayName `
1007
- // - `email `
1008
- // - `createTime`
1009
- // - `deleteTime`
1046
+ // A comma-separated list of fields to order by.
1047
+ //
1048
+ // Supports:
1049
+ // - `displayName asc`
1050
+ // - `email asc `
1051
+ // - `signupTime desc `
1052
+ // - `createTime desc `
1053
+ // - `deleteTime desc `
1010
1054
orderBy ?: string ;
1011
1055
// Whether to show deleted organizations.
1012
1056
showDeleted ?: boolean ;
@@ -1177,6 +1221,24 @@ interface OrganizationListMembersInput extends RequestOptions {
1177
1221
// The identifier of the organization.
1178
1222
organizationId : string ;
1179
1223
1224
+ // Filter the results by display name.
1225
+ //
1226
+ // To enable prefix filtering append `*` to the end of the value
1227
+ // and ensure you provide at least 3 characters excluding the
1228
+ // wildcard.
1229
+ //
1230
+ // This filter is case-insensitivity.
1231
+ displayName ?: string ;
1232
+ // Filter the results by email address.
1233
+ //
1234
+ // To enable prefix filtering append `*` to the end of the value
1235
+ // and ensure you provide at least 3 characters excluding the
1236
+ // wildcard.
1237
+ //
1238
+ // This filter is case-insensitivity.
1239
+ email ?: string ;
1240
+ // Filter the results by a role identifier.
1241
+ roleId ?: string ;
1180
1242
// The maximum number of members to return. The API may return fewer than
1181
1243
// this value.
1182
1244
//
@@ -1189,12 +1251,12 @@ interface OrganizationListMembersInput extends RequestOptions {
1189
1251
// When paginating, all other parameters provided to list members must match
1190
1252
// the call that provided the page token.
1191
1253
pageToken ?: string ;
1192
- // A comma-separated list of fields to order by, sorted in ascending order.
1193
- // Use `desc` after a field name for descending.
1254
+ // A comma-separated list of fields to order by.
1194
1255
//
1195
- // Supported fields:
1196
- // - `createTime`
1197
- // - `updateTime`
1256
+ // Supports:
1257
+ // - `displayName asc`
1258
+ // - `email asc`
1259
+ // - `createTime desc`
1198
1260
orderBy ?: string ;
1199
1261
}
1200
1262
@@ -1208,8 +1270,6 @@ interface OrganizationAddMemberInput extends RequestOptions {
1208
1270
// The identifier of the user.
1209
1271
userId ?: string ;
1210
1272
// The identifier of the role.
1211
- //
1212
- // This is currently limited to `member`, `admin`, and `owner`.
1213
1273
roleId ?: string ;
1214
1274
}
1215
1275
@@ -1233,8 +1293,6 @@ interface OrganizationUpdateMemberInput extends RequestOptions {
1233
1293
userId : string ;
1234
1294
1235
1295
// The identifier of the role.
1236
- //
1237
- // This is currently limited to `member`, `admin`, and `owner`.
1238
1296
roleId ?: string ;
1239
1297
1240
1298
// If set to true, and the member is not found, a new member will be created.
@@ -1275,11 +1333,11 @@ interface SubscriptionListInput extends RequestOptions {
1275
1333
// When paginating, all other parameters provided to list subscriptions must match
1276
1334
// the call that provided the page token.
1277
1335
pageToken ?: string ;
1278
- // A comma-separated list of fields to order by, sorted in ascending order.
1279
- // Use `desc` after a field name for descending.
1336
+ // A comma-separated list of fields to order by.
1280
1337
//
1281
- // Supported fields:
1282
- // - `createTime`
1338
+ // Supports:
1339
+ // - `active desc`
1340
+ // - `createTime desc`
1283
1341
orderBy ?: string ;
1284
1342
// The Subscription view to return in the results.
1285
1343
//
@@ -1304,6 +1362,22 @@ interface SubscriptionGetInput extends RequestOptions {
1304
1362
* The input options for the `users.list` method.
1305
1363
*/
1306
1364
interface UserListInput extends RequestOptions {
1365
+ // Filter the results by display name.
1366
+ //
1367
+ // To enable prefix filtering append `*` to the end of the value
1368
+ // and ensure you provide at least 3 characters excluding the
1369
+ // wildcard.
1370
+ //
1371
+ // This filter is case-insensitivity.
1372
+ displayName ?: string ;
1373
+ // Filter the results by email address.
1374
+ //
1375
+ // To enable prefix filtering append `*` to the end of the value
1376
+ // and ensure you provide at least 3 characters excluding the
1377
+ // wildcard.
1378
+ //
1379
+ // This filter is case-insensitivity.
1380
+ email ?: string ;
1307
1381
// The maximum number of users to return. The API may return fewer than
1308
1382
// this value.
1309
1383
//
@@ -1316,14 +1390,14 @@ interface UserListInput extends RequestOptions {
1316
1390
// When paginating, all other parameters provided to list users must match
1317
1391
// the call that provided the page token.
1318
1392
pageToken ?: string ;
1319
- // A comma-separated list of fields to order by, sorted in ascending order .
1320
- // Use `desc` after a field name for descending.
1321
- //
1322
- // Supported fields:
1323
- // - `displayName `
1324
- // - `email `
1325
- // - `createTime`
1326
- // - `deleteTime`
1393
+ // A comma-separated list of fields to order by.
1394
+ //
1395
+ // Supports:
1396
+ // - `displayName asc`
1397
+ // - `email asc `
1398
+ // - `signupTime desc `
1399
+ // - `createTime desc `
1400
+ // - `deleteTime desc `
1327
1401
orderBy ?: string ;
1328
1402
// Whether to show deleted users.
1329
1403
showDeleted ?: boolean ;
0 commit comments