@@ -25,26 +25,18 @@ export declare namespace PodsClient {
2525
2626export class PodsClient {
2727 protected readonly _options : NormalizedClientOptionsWithAuth < PodsClient . Options > ;
28- protected _apiKeys : ApiKeysClient | undefined ;
29- protected _domains : DomainsClient | undefined ;
3028 protected _inboxes : InboxesClient | undefined ;
3129 protected _threads : ThreadsClient | undefined ;
3230 protected _drafts : DraftsClient | undefined ;
31+ protected _domains : DomainsClient | undefined ;
3332 protected _lists : ListsClient | undefined ;
3433 protected _metrics : MetricsClient | undefined ;
34+ protected _apiKeys : ApiKeysClient | undefined ;
3535
3636 constructor ( options : PodsClient . Options = { } ) {
3737 this . _options = normalizeClientOptionsWithAuth ( options ) ;
3838 }
3939
40- public get apiKeys ( ) : ApiKeysClient {
41- return ( this . _apiKeys ??= new ApiKeysClient ( this . _options ) ) ;
42- }
43-
44- public get domains ( ) : DomainsClient {
45- return ( this . _domains ??= new DomainsClient ( this . _options ) ) ;
46- }
47-
4840 public get inboxes ( ) : InboxesClient {
4941 return ( this . _inboxes ??= new InboxesClient ( this . _options ) ) ;
5042 }
@@ -57,6 +49,10 @@ export class PodsClient {
5749 return ( this . _drafts ??= new DraftsClient ( this . _options ) ) ;
5850 }
5951
52+ public get domains ( ) : DomainsClient {
53+ return ( this . _domains ??= new DomainsClient ( this . _options ) ) ;
54+ }
55+
6056 public get lists ( ) : ListsClient {
6157 return ( this . _lists ??= new ListsClient ( this . _options ) ) ;
6258 }
@@ -65,6 +61,10 @@ export class PodsClient {
6561 return ( this . _metrics ??= new MetricsClient ( this . _options ) ) ;
6662 }
6763
64+ public get apiKeys ( ) : ApiKeysClient {
65+ return ( this . _apiKeys ??= new ApiKeysClient ( this . _options ) ) ;
66+ }
67+
6868 /**
6969 * @param {AgentMail.pods.ListPodsRequest } request
7070 * @param {PodsClient.RequestOptions } requestOptions - Request-specific configuration.
0 commit comments