forked from Authress/authress-sdk.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
1404 lines (1345 loc) · 43.5 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable node/no-missing-import */
/* eslint-disable @typescript-eslint/no-empty-interface */
/* eslint-disable no-shadow */
import { Response, IPaginated, Links, Cursor } from './src/response';
import { ConnectionsApi } from './src/connections/api';
export * from './src/connections/api';
export * from './src/connections/dtos';
import { TenantsApi } from './src/tenants/api';
export * from './src/tenants/api';
export * from './src/tenants/dtos';
import { ExtensionsApi } from './src/extensions/api';
export * from './src/extensions/api';
export * from './src/extensions/dtos';
export interface AuthressSettings {
//** Authress baseUrl => API Host: https://authress.io/app/#/api?route=overview */
baseUrl: string;
}
/**
* The access record which links users to roles.
* @export
* @interface AccessRecord
*/
export interface AccessRecord {
/**
* Unique identifier for the record, can be specified on record creation.
* @type {string}
* @memberof AccessRecord
*/
recordId?: string;
/**
* A helpful name for this record
* @type {string}
* @memberof AccessRecord
*/
name: string;
/**
* More details about this record
* @type {string}
* @memberof AccessRecord
*/
description?: string;
/**
* Current status of the access record.
* @type {string}
* @memberof AccessRecord
*/
status?: AccessRecord.StatusEnum;
/**
*
* @type {AccountLink}
* @memberof AccessRecord
*/
account?: AccountLink;
/**
* The list of users this record applies to. Users can either be specified at the record level or at the statement level.
* @type {Array<User>}
* @memberof AccessRecord
*/
users?: Array<User>;
/**
* The list of admin that can edit this record even if they do not have global record edit permissions. By default the creator of the record has admin access unless explicitly this property is set.
* @type {Array<User>}
* @memberof AccessRecord
*/
admins?: Array<User>;
/**
* The list of groups this record applies to. Users in these groups will be receive access to the resources listed. Groups can either be specified at the record level or at the statement level.
* @type {Array<LinkedGroup>}
* @memberof AccessRecord
*/
groups?: Array<LinkedGroup>;
/**
* A list of statements which match roles to resources. Users in this record have all statements apply to them
* @type {Array<Statement>}
* @memberof AccessRecord
*/
statements: Array<Statement>;
/**
* The ISO8601 expected datetime of the last time an update to the record occurred.
* @type {string}
* @memberof AccessRecord
*/
lastUpdated: string;
/**
*
* @type {Links}
* @memberof AccessRecord
*/
links?: Links;
}
/**
*
* @export
* @interface LinkedGroup
*/
export interface LinkedGroup {
/**
* @type {string}
* @memberof LinkedGroup
*/
groupId: string;
}
/**
* @export
* @namespace AccessRecord
*/
export namespace AccessRecord {
/**
* @export
* @enum {string}
*/
export enum StatusEnum {
ACTIVE = 'ACTIVE',
DELETED = 'DELETED'
}
}
/**
* A collection of access records
* @export
* @interface AccessRecordCollection
*/
export interface AccessRecordCollection extends IPaginated<AccessRecordCollection> {
/**
*
* @type {Array<AccessRecord>}
* @memberof AccessRecordCollection
*/
records: Array<AccessRecord>;
}
/**
*
* @export
* @interface Account
*/
export interface Account {
/**
*
* @type {string}
* @memberof Account
*/
accountId: string;
/**
*
* @type {Date}
* @memberof Account
*/
createdTime?: Date;
/**
* The top authress sub domain specific for this account to be used with this API.
* @type {string}
* @memberof Account
*/
domain: string;
/**
*
* @type {Record<string, unknown>}
* @memberof Account
*/
company: Record<string, unknown>;
/**
*
* @type {Links}
* @memberof Account
*/
links?: Links;
}
/**
*
* @export
* @interface AccountCollection
*/
export interface AccountCollection {
/**
*
* @type {Array<Account>}
* @memberof AccountCollection
*/
accounts: Array<Account>;
}
/**
*
* @export
* @interface ClaimRequest
*/
export interface ClaimRequest {
/**
* The parent resource to add a sub-resource to. The resource must have a resource configuration that add the permission CLAIM for this to work.
* @type {string}
* @memberof ClaimRequest
*/
collectionResource: string;
/**
* The sub-resource the user is requesting Admin ownership over.
* @type {string}
* @memberof ClaimRequest
*/
resourceId: string;
}
/**
*
* @export
* @interface ClaimRequest
*/
export interface ClaimRequest {
/**
* The parent resource to add a sub-resource to. The resource must have a resource configuration that add the permission CLAIM for this to work.
* @type {string}
* @memberof ClaimRequest
*/
collectionResource: string;
/**
* The sub-resource the user is requesting Admin ownership over.
* @type {string}
* @memberof ClaimRequest
*/
resourceId: string;
}
/**
*
* @export
* @interface ClaimResponse
*/
export interface ClaimResponse {
}
/**
* A client configuration.
* @export
* @interface ClientAccessKey
*/
export interface ClientAccessKey {
/**
* The unique id of the client.
* @type {string}
* @memberof ClientAccessKey
*/
keyId?: string;
/**
* The unique id of the client.
* @type {string}
* @memberof ClientAccessKey
*/
clientId: string;
/**
*
* @type {Date}
* @memberof ClientAccessKey
*/
generationDate?: Date;
/**
* An encoded access key which contains identifying information for client access token creation. For direct use with the Authress SDKs, not meant to be decoded. Must be saved on created, as it will never be returned from the API ever again. Authress only saved the corresponding public key to verify private access keys.
* @type {string}
* @memberof ClientAccessKey
*/
accessKey?: string;
}
/**
* The identifying information which uniquely links a JWT OIDC token to an identity provider
* @export
* @interface Identity
*/
export interface Identity {
/**
* The issuer of the JWT token. This can be any OIDC compliant provider.
* @type {string}
* @memberof Identity
*/
issuer: string;
/**
* The audience of the JWT token. This can be either an audience for your entire app, or one particular audience for it. If there is more than one audience, multiple identities can be created.
* @type {string}
* @memberof Identity
*/
audience: string;
}
/**
*
* @export
* @interface IdentityCollection
*/
export interface IdentityCollection {
/**
*
* @type {Array<Identity>}
* @memberof IdentityCollection
*/
identities: Array<Identity>;
}
/**
* Request to link an identity provider's audience and your app's audience with Authress.
* @export
* @interface IdentityRequest
*/
export interface IdentityRequest {
/**
* A valid JWT OIDC compliant token which will still pass authentication requests to the identity provider. Must contain a unique audience and issuer.
* @type {string}
* @memberof IdentityRequest
*/
jwt: string;
/**
* If the `jwt` token contains more than one valid audience, then the single audience that should associated with Authress. If more than one audience is preferred, repeat this call with each one.
* @type {string}
* @memberof IdentityRequest
*/
preferredAudience?: string;
}
/**
* A collect of permissions that the user has to a resource.
* @export
* @interface UserResources
*/
export interface UserResources extends IPaginated<UserResources> {
/**
*
* @type {AccountLink}
* @memberof UserResources
*/
account?: AccountLink;
/**
*
* @type {string}
* @memberof UserResources
*/
userId: string;
/**
* A list of the resources the user has some permission to.
* @type {Array<UserResourcesResources>}
* @memberof UserResources
*/
resources?: Array<UserResourcesResources>;
/**
* If the user has access to all sub-resources, then instead of resources being a list, this property will be populated `true`.
* @type {Array<UserResourcesResources>}
* @memberof UserResources
*/
accessToAllSubResources?: boolean;
}
/**
* The collection of a list of clients
* @export
* @interface ServiceClientCollection
*/
export interface ServiceClientCollection extends IPaginated<ServiceClientCollection> {
/**
* A list of clients
* @type {Array<ServiceClient>}
* @memberof ServiceClientCollection
*/
clients: Array<ServiceClientSummary>;
}
/**
* A client configuration.
* @export
* @interface ServiceClientSummary
*/
export interface ServiceClientSummary {
/**
* The unique id of the client.
* @type {string}
* @memberof ServiceClientSummary
*/
clientId: string;
/**
*
* @type {Date}
* @memberof ServiceClientSummary
*/
createdTime?: Date;
/**
* The name of the client
* @type {string}
* @memberof ServiceClientSummary
*/
name?: string;
}
/**
* A client configuration.
* @export
* @interface ServiceClient
*/
export interface ServiceClient {
/**
* The unique id of the client.
* @type {string}
* @memberof ServiceClient
*/
clientId: string;
/**
*
* @type {Date}
* @memberof ServiceClient
*/
createdTime?: Date;
/**
* The name of the client
* @type {string}
* @memberof ServiceClient
*/
name?: string;
/**
*
* @type {ServiceClientOptions}
* @memberof ServiceClient
*/
options?: ServiceClientOptions;
/**
* A list of the service client access keys.
* @type {Array<ClientAccessKey>}
* @memberof ServiceClient
*/
verificationKeys?: Array<ClientAccessKey>;
}
/**
* A client configuration.
* @export
* @interface AccessKeyResponse
*/
export interface AccessKeyResponse {
/**
* The unique id of the client.
* @type {string}
* @memberof AccessKeyResponse
*/
keyId?: string;
/**
* The unique id of the client.
* @type {string}
* @memberof AccessKeyResponse
*/
clientId: string;
/**
*
* @type {Date}
* @memberof AccessKeyResponse
*/
generationDate?: Date;
/**
* An encoded access key which contains identifying information for client access token creation. For direct use with the Authress SDKs, not meant to be decoded. Must be saved on created, as it will never be returned from the API ever again. Authress only saved the corresponding public key to verify private access keys.
* @type {string}
* @memberof AccessKeyResponse
*/
accessKey?: string;
/**
* The unencoded OAuth client secret used with the OAuth endpoints to request a JWT using the 'client_credentials' grant type. Pass the clientId and the clientSecret to the documented /tokens endpoint.
* @type {string}
* @memberof AccessKeyResponse
*/
clientSecret?: string;
}
/**
* A collect of permissions that the user has to a resource.
* @export
* @interface UserPermissions
*/
export interface UserPermissions {
/**
*
* @type {AccountLink}
* @memberof UserPermissions
*/
account?: AccountLink;
/**
*
* @type {string}
* @memberof UserPermissions
*/
userId: string;
/**
* A list of the permissions
* @type {Array<PermissionObject>}
* @memberof UserPermissions
*/
permissions: Array<PermissionObject>;
}
/**
* A JWT token with represents the user.
* @export
* @interface UserToken
*/
export interface UserToken {
/**
*
* @type {AccountLink}
* @memberof UserToken
*/
account?: AccountLink;
/**
*
* @type {string}
* @memberof UserToken
*/
userId: string;
/**
* The unique identifier for the token
* @type {string}
* @memberof UserToken
*/
tokenId: string;
/**
* The access token
* @type {string}
* @memberof UserToken
*/
token: string;
/**
*
* @type {Links}
* @memberof UserToken
*/
links?: Links;
}
/**
*
* @export
* @interface ResourcePermissionsCollection
*/
export interface ResourcePermissionsCollection {
/**
*
* @type {Array<ResourcePermissionsObject>}
* @memberof ResourcePermissionsCollection
*/
permissions: Array<ResourcePermissionsObject>;
}
/**
*
* @export
* @interface ResourceUsersCollection
*/
export interface ResourceUsersCollection extends IPaginated<ResourceUsersCollection> {
/**
*
* @type {Array<UserRoleCollection>}
* @memberof ResourceUsersCollection
*/
users: Array<UserRoleCollection>;
}
/**
*
* @export
* @interface User
*/
export interface User {
/**
*
* @type {string}
* @memberof User
*/
userId: string;
}
/**
* The role which contains a list of permissions.
* @export
* @interface Role
*/
export interface Role {
/**
* Unique identifier for the role, can be specified on creation, and used by records to map to permissions.
* @type {string}
* @memberof Role
*/
roleId: string;
/**
* A helpful name for this role
* @type {string}
* @memberof Role
*/
name: string;
/**
* A description for when to the user as well as additional information.
* @type {string}
* @memberof Role
*/
description?: string;
/**
* A list of the permissions
* @type {Array<PermissionObject>}
* @memberof Role
*/
permissions: Array<PermissionObject>;
}
/**
* Metadata and additional properties relevant.
* @export
* @interface MetadataObject
*/
export interface MetadataObject {
/**
*
* @type {AccountLink}
* @memberof MetadataObject
*/
account?: AccountLink;
/**
*
* @type {string}
* @memberof MetadataObject
*/
userId: string;
/**
* A JSON object limited to 10KB. The owner identified by the sub will always have access to read and update this data. Service clients may have access if the related property on the client is set. Access is restricted to authorized users.
* @type {Record<string, unknown>}
* @memberof MetadataObject
*/
metadata: Record<string, unknown>;
}
/**
* The collective action and associate grants on a permission
* @export
* @interface PermissionObject
*/
export interface PermissionObject {
/**
* The action the permission grants, can be scoped using `:` and parent actions imply sub-action permissions, action:* or action implies action:sub-action. This property is case-insensitive, it will always be cast to lowercase before comparing actions to user permissions.
* @type {string}
* @memberof PermissionObject
*/
action: string;
/**
* Does this permission grant the user the ability to execute the action?
* @type {boolean}
* @memberof PermissionObject
*/
allow: boolean;
/**
* Allows the user to give the permission to others without being able to execute the action.
* @type {boolean}
* @memberof PermissionObject
*/
grant: boolean;
/**
* Allows delegating or granting the permission to others without being able to execute tha action.
* @type {boolean}
* @memberof PermissionObject
*/
delegate: boolean;
}
/**
* A collect of permissions that the user has to a resource.
* @export
* @interface PermissionResponse
*/
export interface PermissionResponse {
/**
*
* @type {AccountLink}
* @memberof PermissionResponse
*/
account?: AccountLink;
/**
*
* @type {string}
* @memberof PermissionResponse
*/
userId: string;
/**
* A list of the permissions
* @type {Array<PermissionObject>}
* @memberof PermissionResponse
*/
permissions: Array<PermissionObject>;
}
/**
*
* @export
* @interface ResourcePermission
*/
export interface ResourcePermission {
/**
*
* @type {Array<ResourcePermissionsObject>}
* @memberof ResourcePermission
*/
permissions: Array<ResourcePermissionsObject>;
}
/**
* A collection of resource permissions that have been defined.
* @export
* @interface ResourcePermissionCollection
*/
export interface ResourcePermissionCollection extends IPaginated<ResourcePermissionCollection> {
/**
*
* @type {Array<ResourcePermission>}
* @memberof ResourcePermissionCollection
*/
resources: Array<ResourcePermission>;
}
/**
*
* @export
* @interface TokenRequest
*/
export interface TokenRequest {
/**
* A list of statements which match roles to resources. The token will have all statements apply to it.
* @type {Array<Statement>}
* @memberof TokenRequest
*/
statements: Array<Statement>;
/**
* The ISO8601 datetime when the token will expire. Default is 24 hours from now.
* @type {Date}
* @memberof TokenRequest
*/
expires: Date;
}
/**
*
* @export
* @interface UserResourcesResources
*/
export interface UserResourcesResources {
/**
* The resourceUri that matches the requested resourceUri that the user has access to.
* @type {string}
* @memberof UserResourcesResources
*/
resourceUri?: string;
}
/**
* A JWT token with represents the user.
* @export
* @interface UserToken
*/
export interface UserToken {
/**
*
* @type {AccountLink}
* @memberof UserToken
*/
account?: AccountLink;
/**
*
* @type {string}
* @memberof UserToken
*/
userId: string;
/**
* The unique identifier for the token
* @type {string}
* @memberof UserToken
*/
tokenId: string;
/**
* The access token
* @type {string}
* @memberof UserToken
*/
token: string;
/**
*
* @type {Links}
* @memberof UserToken
*/
links?: Links;
}
/**
* A map of client specific options
* @export
* @interface ServiceClientOptions
*/
export interface ServiceClientOptions {
/**
* Grant the client access to verify authorization on behalf of any user.
* @type {boolean}
* @memberof ServiceClientOptions
*/
grantUserPermissionsAccess?: boolean;
/**
* Grant the client access to read and write user data on behalf of any user
* @type {boolean}
* @memberof ServiceClientOptions
*/
grantMetadataAccess?: boolean;
}
/**
*
* @export
* @interface User
*/
export interface User {
/**
*
* @type {string}
* @memberof User
*/
userId: string;
}
/**
*
* @export
* @interface ResourcePermissionsObject
*/
export interface ResourcePermissionsObject {
/**
*
* @type {string}
* @memberof ResourcePermissionsObject
*/
action: ResourcePermissionsObject.ActionEnum;
/**
*
* @type {boolean}
* @memberof ResourcePermissionsObject
*/
allow: boolean;
}
/**
* @export
* @namespace ResourcePermissionsObject
*/
export namespace ResourcePermissionsObject {
/**
* @export
* @enum {string}
*/
export enum ActionEnum {
CLAIM = 'CLAIM',
PUBLIC = 'PUBLIC'
}
}
/**
*
* @export
* @interface AccountLink
*/
export interface AccountLink {
/**
*
* @type {string}
* @memberof AccountLink
*/
accountId?: string;
}
/**
*
* @export
* @interface Resource
*/
export interface Resource {
/**
* A resource path which can be top level, fully qualified, or end with a *. Parent resources imply permissions to sub-resources.
* @type {string}
* @memberof Resource
*/
resourceUri: string;
}
/**
*
* @export
* @interface Statement
*/
export interface Statement {
/**
*
* @type {Array<string>}
* @memberof Statement
*/
roles: Array<string>;
/**
*
* @type {Array<Resource>}
* @memberof Statement
*/
resources: Array<Resource>;
/**
* The list of users this statement applies to
* @type {Array<User>}
* @memberof AccessRecord
*/
users?: Array<User>;
/**
* The list of groups this statement applies to. Users in these groups will be receive access to the resources listed.
* @type {Array<LinkedGroup>}
* @memberof AccessRecord
*/
groups?: Array<LinkedGroup>;
}
/**
*
* @export
* @interface UserRoleCollection
*/
export interface UserRoleCollection {
/**
* @type {string}
* @memberof UserRoleCollection
*/
userId: string;
/**
* A list of the attached user roles
* @type {Array<UserRole>}
* @memberof UserRoleCollection
*/
roles: Array<UserRole>;
}
/**
*
* @export
* @interface UserRole
*/
export interface UserRole {
/**
* The identifier of the role.
* @type {string}
* @memberof UserRole
*/
roleId: string;
}
/**
* AccessRecordsApi
* @export
*/
export interface AccessRecordsApi {
/**
* Claim a resource by allowing a user to pick an identifier and receive admin access to that resource if it hasn't already been claimed. This only works for resources specifically marked as <strong>CLAIM</strong>. The result will be a new access record listing that user as the admin for this resource. The resourceUri will be appended to the collection resource uri using a '/' (forward slash) automatically.
* @summary Claim a resource by an allowed user
* @param {ClaimRequest} body
* @throws {ArgumentRequiredError}
*/
createClaim(body: ClaimRequest): Promise<Response<void>>;
/**
* Specify user roles for specific resources.
* @summary Create a new access record
* @param {AccessRecord} body
* @throws {ArgumentRequiredError}
*/
createRecord(body: AccessRecord): Promise<Response<AccessRecord>>;
/**
* Remove an access record, removing associated permissions from all users in record. If a user has a permission from another record, that permission will not be removed. (Note: This disables the record by changing the status to <strong>DELETED</strong> but not completely remove the record for tracking purposes.
* @summary Deletes an access record.
* @param {string} recordId The identifier of the access record.
* @throws {ArgumentRequiredError}
*/
deleteRecord(recordId: string): Promise<Response<void>>;
/**
* Access records contain information assigning permissions to users for resources.
* @summary Get an access record for the account.
* @param {string} recordId The identifier of the access record.
* @throws {ArgumentRequiredError}
*/
getRecord(recordId: string): Promise<Response<AccessRecord>>;
/**
* <i class=\"far fa-money-bill-alt text-primary\"></i> <span class=\"text-primary\">Billable</span> Returns a paginated records list for the account. Only records the user has access to are returned.
* @summary Get all account records.
* @param {number} [limit] Max number of results to return
* @param {Cursor} [cursor] Continuation cursor for paging (will automatically be set)
* @param {string} [filter] Filter to search records by. This is a case insensitive search through every text field.
* @param {string} [status] Filter records by their current status.
* @throws {ArgumentRequiredError}
*/
getRecords(limit?: number, cursor?: Cursor, filter?: string, status?: string): Promise<Response<AccessRecordCollection>>;
/**
* Updates an access record adding or removing user permissions to resources.
* @summary Update an access record.
* @param {string} recordId The identifier of the access record.
* @param {AccessRecord} body
* @param {Date|string} expectedLastModifiedTime The expected last time that the access record was updated. Provide this value using the {@link AccessRecord.lastUpdated} time to prevent overwriting previous updates.
* @throws {ArgumentRequiredError}
*/
updateRecord(recordId: string, body: AccessRecord, expectedLastModifiedTime?: Date): Promise<Response<AccessRecord>>;
}
/**
* AccountsApi