Skip to content

Commit

Permalink
fix: fix namespace exports regression (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Oct 11, 2023
1 parent cad5c73 commit f7f367c
Show file tree
Hide file tree
Showing 38 changed files with 264 additions and 276 deletions.
238 changes: 119 additions & 119 deletions src/index.ts

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/resources/account-collection-flows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ export interface AccountCollectionFlowListParams extends PageParams {
}

export namespace AccountCollectionFlows {
export type AccountCollectionFlow = AccountCollectionFlowsAPI.AccountCollectionFlow;
export import AccountCollectionFlow = AccountCollectionFlowsAPI.AccountCollectionFlow;
export import AccountCollectionFlowsPage = AccountCollectionFlowsAPI.AccountCollectionFlowsPage;
export type AccountCollectionFlowCreateParams = AccountCollectionFlowsAPI.AccountCollectionFlowCreateParams;
export type AccountCollectionFlowUpdateParams = AccountCollectionFlowsAPI.AccountCollectionFlowUpdateParams;
export type AccountCollectionFlowListParams = AccountCollectionFlowsAPI.AccountCollectionFlowListParams;
export import AccountCollectionFlowCreateParams = AccountCollectionFlowsAPI.AccountCollectionFlowCreateParams;
export import AccountCollectionFlowUpdateParams = AccountCollectionFlowsAPI.AccountCollectionFlowUpdateParams;
export import AccountCollectionFlowListParams = AccountCollectionFlowsAPI.AccountCollectionFlowListParams;
}
6 changes: 3 additions & 3 deletions src/resources/account-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ export interface AccountDetailCreateParams {
export interface AccountDetailListParams extends PageParams {}

export namespace AccountDetails {
export type AccountDetail = AccountDetailsAPI.AccountDetail;
export import AccountDetail = AccountDetailsAPI.AccountDetail;
export import AccountDetailsPage = AccountDetailsAPI.AccountDetailsPage;
export type AccountDetailCreateParams = AccountDetailsAPI.AccountDetailCreateParams;
export type AccountDetailListParams = AccountDetailsAPI.AccountDetailListParams;
export import AccountDetailCreateParams = AccountDetailsAPI.AccountDetailCreateParams;
export import AccountDetailListParams = AccountDetailsAPI.AccountDetailListParams;
}
4 changes: 2 additions & 2 deletions src/resources/connections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export interface ConnectionListParams extends PageParams {
}

export namespace Connections {
export type Connection = ConnectionsAPI.Connection;
export import Connection = ConnectionsAPI.Connection;
export import ConnectionsPage = ConnectionsAPI.ConnectionsPage;
export type ConnectionListParams = ConnectionsAPI.ConnectionListParams;
export import ConnectionListParams = ConnectionsAPI.ConnectionListParams;
}
12 changes: 6 additions & 6 deletions src/resources/counterparties.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,11 +685,11 @@ export interface CounterpartyCollectAccountParams {
}

export namespace Counterparties {
export type Counterparty = CounterpartiesAPI.Counterparty;
export type CounterpartyCollectAccountResponse = CounterpartiesAPI.CounterpartyCollectAccountResponse;
export import Counterparty = CounterpartiesAPI.Counterparty;
export import CounterpartyCollectAccountResponse = CounterpartiesAPI.CounterpartyCollectAccountResponse;
export import CounterpartiesPage = CounterpartiesAPI.CounterpartiesPage;
export type CounterpartyCreateParams = CounterpartiesAPI.CounterpartyCreateParams;
export type CounterpartyUpdateParams = CounterpartiesAPI.CounterpartyUpdateParams;
export type CounterpartyListParams = CounterpartiesAPI.CounterpartyListParams;
export type CounterpartyCollectAccountParams = CounterpartiesAPI.CounterpartyCollectAccountParams;
export import CounterpartyCreateParams = CounterpartiesAPI.CounterpartyCreateParams;
export import CounterpartyUpdateParams = CounterpartiesAPI.CounterpartyUpdateParams;
export import CounterpartyListParams = CounterpartiesAPI.CounterpartyListParams;
export import CounterpartyCollectAccountParams = CounterpartiesAPI.CounterpartyCollectAccountParams;
}
6 changes: 3 additions & 3 deletions src/resources/documents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ export interface DocumentListParams extends PageParams {
}

export namespace Documents {
export type Document = DocumentsAPI.Document;
export import Document = DocumentsAPI.Document;
export import DocumentsPage = DocumentsAPI.DocumentsPage;
export type DocumentCreateParams = DocumentsAPI.DocumentCreateParams;
export type DocumentListParams = DocumentsAPI.DocumentListParams;
export import DocumentCreateParams = DocumentsAPI.DocumentCreateParams;
export import DocumentListParams = DocumentsAPI.DocumentListParams;
}
4 changes: 2 additions & 2 deletions src/resources/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export interface EventListParams extends PageParams {
}

export namespace Events {
export type Event = EventsAPI.Event;
export import Event = EventsAPI.Event;
export import EventsPage = EventsAPI.EventsPage;
export type EventListParams = EventsAPI.EventListParams;
export import EventListParams = EventsAPI.EventListParams;
}
10 changes: 5 additions & 5 deletions src/resources/expected-payments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,10 @@ export interface ExpectedPaymentListParams extends PageParams {
}

export namespace ExpectedPayments {
export type ExpectedPayment = ExpectedPaymentsAPI.ExpectedPayment;
export type ExpectedPaymentType = ExpectedPaymentsAPI.ExpectedPaymentType;
export import ExpectedPayment = ExpectedPaymentsAPI.ExpectedPayment;
export import ExpectedPaymentType = ExpectedPaymentsAPI.ExpectedPaymentType;
export import ExpectedPaymentsPage = ExpectedPaymentsAPI.ExpectedPaymentsPage;
export type ExpectedPaymentCreateParams = ExpectedPaymentsAPI.ExpectedPaymentCreateParams;
export type ExpectedPaymentUpdateParams = ExpectedPaymentsAPI.ExpectedPaymentUpdateParams;
export type ExpectedPaymentListParams = ExpectedPaymentsAPI.ExpectedPaymentListParams;
export import ExpectedPaymentCreateParams = ExpectedPaymentsAPI.ExpectedPaymentCreateParams;
export import ExpectedPaymentUpdateParams = ExpectedPaymentsAPI.ExpectedPaymentUpdateParams;
export import ExpectedPaymentListParams = ExpectedPaymentsAPI.ExpectedPaymentListParams;
}
15 changes: 7 additions & 8 deletions src/resources/external-accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,13 +609,12 @@ export interface ExternalAccountVerifyParams {
}

export namespace ExternalAccounts {
export type ExternalAccount = ExternalAccountsAPI.ExternalAccount;
export type ExternalAccountType = ExternalAccountsAPI.ExternalAccountType;
export import ExternalAccount = ExternalAccountsAPI.ExternalAccount;
export import ExternalAccountType = ExternalAccountsAPI.ExternalAccountType;
export import ExternalAccountsPage = ExternalAccountsAPI.ExternalAccountsPage;
export type ExternalAccountCreateParams = ExternalAccountsAPI.ExternalAccountCreateParams;
export type ExternalAccountUpdateParams = ExternalAccountsAPI.ExternalAccountUpdateParams;
export type ExternalAccountListParams = ExternalAccountsAPI.ExternalAccountListParams;
export type ExternalAccountCompleteVerificationParams =
ExternalAccountsAPI.ExternalAccountCompleteVerificationParams;
export type ExternalAccountVerifyParams = ExternalAccountsAPI.ExternalAccountVerifyParams;
export import ExternalAccountCreateParams = ExternalAccountsAPI.ExternalAccountCreateParams;
export import ExternalAccountUpdateParams = ExternalAccountsAPI.ExternalAccountUpdateParams;
export import ExternalAccountListParams = ExternalAccountsAPI.ExternalAccountListParams;
export import ExternalAccountCompleteVerificationParams = ExternalAccountsAPI.ExternalAccountCompleteVerificationParams;
export import ExternalAccountVerifyParams = ExternalAccountsAPI.ExternalAccountVerifyParams;
}
9 changes: 4 additions & 5 deletions src/resources/incoming-payment-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,10 +324,9 @@ export interface IncomingPaymentDetailCreateAsyncParams {
}

export namespace IncomingPaymentDetails {
export type IncomingPaymentDetail = IncomingPaymentDetailsAPI.IncomingPaymentDetail;
export import IncomingPaymentDetail = IncomingPaymentDetailsAPI.IncomingPaymentDetail;
export import IncomingPaymentDetailsPage = IncomingPaymentDetailsAPI.IncomingPaymentDetailsPage;
export type IncomingPaymentDetailUpdateParams = IncomingPaymentDetailsAPI.IncomingPaymentDetailUpdateParams;
export type IncomingPaymentDetailListParams = IncomingPaymentDetailsAPI.IncomingPaymentDetailListParams;
export type IncomingPaymentDetailCreateAsyncParams =
IncomingPaymentDetailsAPI.IncomingPaymentDetailCreateAsyncParams;
export import IncomingPaymentDetailUpdateParams = IncomingPaymentDetailsAPI.IncomingPaymentDetailUpdateParams;
export import IncomingPaymentDetailListParams = IncomingPaymentDetailsAPI.IncomingPaymentDetailListParams;
export import IncomingPaymentDetailCreateAsyncParams = IncomingPaymentDetailsAPI.IncomingPaymentDetailCreateAsyncParams;
}
4 changes: 2 additions & 2 deletions src/resources/internal-accounts/balance-reports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export interface BalanceReportListParams extends PageParams {
}

export namespace BalanceReports {
export type BalanceReport = BalanceReportsAPI.BalanceReport;
export import BalanceReport = BalanceReportsAPI.BalanceReport;
export import BalanceReportsPage = BalanceReportsAPI.BalanceReportsPage;
export type BalanceReportListParams = BalanceReportsAPI.BalanceReportListParams;
export import BalanceReportListParams = BalanceReportsAPI.BalanceReportListParams;
}
12 changes: 6 additions & 6 deletions src/resources/internal-accounts/internal-accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,13 @@ export interface InternalAccountListParams extends PageParams {
}

export namespace InternalAccounts {
export type InternalAccount = InternalAccountsAPI.InternalAccount;
export import InternalAccount = InternalAccountsAPI.InternalAccount;
export import InternalAccountsPage = InternalAccountsAPI.InternalAccountsPage;
export type InternalAccountCreateParams = InternalAccountsAPI.InternalAccountCreateParams;
export type InternalAccountUpdateParams = InternalAccountsAPI.InternalAccountUpdateParams;
export type InternalAccountListParams = InternalAccountsAPI.InternalAccountListParams;
export import InternalAccountCreateParams = InternalAccountsAPI.InternalAccountCreateParams;
export import InternalAccountUpdateParams = InternalAccountsAPI.InternalAccountUpdateParams;
export import InternalAccountListParams = InternalAccountsAPI.InternalAccountListParams;
export import BalanceReports = BalanceReportsAPI.BalanceReports;
export type BalanceReport = BalanceReportsAPI.BalanceReport;
export import BalanceReport = BalanceReportsAPI.BalanceReport;
export import BalanceReportsPage = BalanceReportsAPI.BalanceReportsPage;
export type BalanceReportListParams = BalanceReportsAPI.BalanceReportListParams;
export import BalanceReportListParams = BalanceReportsAPI.BalanceReportListParams;
}
16 changes: 8 additions & 8 deletions src/resources/invoices/invoices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -829,15 +829,15 @@ export namespace InvoiceUpdateParams {
export interface InvoiceListParams extends PageParams {}

export namespace Invoices {
export type Invoice = InvoicesAPI.Invoice;
export import Invoice = InvoicesAPI.Invoice;
export import InvoicesPage = InvoicesAPI.InvoicesPage;
export type InvoiceCreateParams = InvoicesAPI.InvoiceCreateParams;
export type InvoiceUpdateParams = InvoicesAPI.InvoiceUpdateParams;
export type InvoiceListParams = InvoicesAPI.InvoiceListParams;
export import InvoiceCreateParams = InvoicesAPI.InvoiceCreateParams;
export import InvoiceUpdateParams = InvoicesAPI.InvoiceUpdateParams;
export import InvoiceListParams = InvoicesAPI.InvoiceListParams;
export import LineItems = LineItemsAPI.LineItems;
export type InvoiceLineItem = LineItemsAPI.InvoiceLineItem;
export import InvoiceLineItem = LineItemsAPI.InvoiceLineItem;
export import InvoiceLineItemsPage = LineItemsAPI.InvoiceLineItemsPage;
export type LineItemCreateParams = LineItemsAPI.LineItemCreateParams;
export type LineItemUpdateParams = LineItemsAPI.LineItemUpdateParams;
export type LineItemListParams = LineItemsAPI.LineItemListParams;
export import LineItemCreateParams = LineItemsAPI.LineItemCreateParams;
export import LineItemUpdateParams = LineItemsAPI.LineItemUpdateParams;
export import LineItemListParams = LineItemsAPI.LineItemListParams;
}
8 changes: 4 additions & 4 deletions src/resources/invoices/line-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ export interface LineItemUpdateParams {
export interface LineItemListParams extends PageParams {}

export namespace LineItems {
export type InvoiceLineItem = LineItemsAPI.InvoiceLineItem;
export import InvoiceLineItem = LineItemsAPI.InvoiceLineItem;
export import InvoiceLineItemsPage = LineItemsAPI.InvoiceLineItemsPage;
export type LineItemCreateParams = LineItemsAPI.LineItemCreateParams;
export type LineItemUpdateParams = LineItemsAPI.LineItemUpdateParams;
export type LineItemListParams = LineItemsAPI.LineItemListParams;
export import LineItemCreateParams = LineItemsAPI.LineItemCreateParams;
export import LineItemUpdateParams = LineItemsAPI.LineItemUpdateParams;
export import LineItemListParams = LineItemsAPI.LineItemListParams;
}
11 changes: 4 additions & 7 deletions src/resources/ledger-account-balance-monitors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,9 @@ export interface LedgerAccountBalanceMonitorListParams extends PageParams {
}

export namespace LedgerAccountBalanceMonitors {
export type LedgerAccountBalanceMonitor = LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitor;
export import LedgerAccountBalanceMonitor = LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitor;
export import LedgerAccountBalanceMonitorsPage = LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitorsPage;
export type LedgerAccountBalanceMonitorCreateParams =
LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitorCreateParams;
export type LedgerAccountBalanceMonitorUpdateParams =
LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitorUpdateParams;
export type LedgerAccountBalanceMonitorListParams =
LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitorListParams;
export import LedgerAccountBalanceMonitorCreateParams = LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitorCreateParams;
export import LedgerAccountBalanceMonitorUpdateParams = LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitorUpdateParams;
export import LedgerAccountBalanceMonitorListParams = LedgerAccountBalanceMonitorsAPI.LedgerAccountBalanceMonitorListParams;
}
13 changes: 5 additions & 8 deletions src/resources/ledger-account-categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,13 +428,10 @@ export namespace LedgerAccountCategoryListParams {
}

export namespace LedgerAccountCategories {
export type LedgerAccountCategory = LedgerAccountCategoriesAPI.LedgerAccountCategory;
export import LedgerAccountCategory = LedgerAccountCategoriesAPI.LedgerAccountCategory;
export import LedgerAccountCategoriesPage = LedgerAccountCategoriesAPI.LedgerAccountCategoriesPage;
export type LedgerAccountCategoryCreateParams =
LedgerAccountCategoriesAPI.LedgerAccountCategoryCreateParams;
export type LedgerAccountCategoryRetrieveParams =
LedgerAccountCategoriesAPI.LedgerAccountCategoryRetrieveParams;
export type LedgerAccountCategoryUpdateParams =
LedgerAccountCategoriesAPI.LedgerAccountCategoryUpdateParams;
export type LedgerAccountCategoryListParams = LedgerAccountCategoriesAPI.LedgerAccountCategoryListParams;
export import LedgerAccountCategoryCreateParams = LedgerAccountCategoriesAPI.LedgerAccountCategoryCreateParams;
export import LedgerAccountCategoryRetrieveParams = LedgerAccountCategoriesAPI.LedgerAccountCategoryRetrieveParams;
export import LedgerAccountCategoryUpdateParams = LedgerAccountCategoriesAPI.LedgerAccountCategoryUpdateParams;
export import LedgerAccountCategoryListParams = LedgerAccountCategoriesAPI.LedgerAccountCategoryListParams;
}
8 changes: 4 additions & 4 deletions src/resources/ledger-account-payouts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ export interface LedgerAccountPayoutListParams extends PageParams {
}

export namespace LedgerAccountPayouts {
export type LedgerAccountPayout = LedgerAccountPayoutsAPI.LedgerAccountPayout;
export import LedgerAccountPayout = LedgerAccountPayoutsAPI.LedgerAccountPayout;
export import LedgerAccountPayoutsPage = LedgerAccountPayoutsAPI.LedgerAccountPayoutsPage;
export type LedgerAccountPayoutCreateParams = LedgerAccountPayoutsAPI.LedgerAccountPayoutCreateParams;
export type LedgerAccountPayoutUpdateParams = LedgerAccountPayoutsAPI.LedgerAccountPayoutUpdateParams;
export type LedgerAccountPayoutListParams = LedgerAccountPayoutsAPI.LedgerAccountPayoutListParams;
export import LedgerAccountPayoutCreateParams = LedgerAccountPayoutsAPI.LedgerAccountPayoutCreateParams;
export import LedgerAccountPayoutUpdateParams = LedgerAccountPayoutsAPI.LedgerAccountPayoutUpdateParams;
export import LedgerAccountPayoutListParams = LedgerAccountPayoutsAPI.LedgerAccountPayoutListParams;
}
9 changes: 3 additions & 6 deletions src/resources/ledger-account-statements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,10 +609,7 @@ export interface LedgerAccountStatementCreateParams {
}

export namespace LedgerAccountStatements {
export type LedgerAccountStatementCreateResponse =
LedgerAccountStatementsAPI.LedgerAccountStatementCreateResponse;
export type LedgerAccountStatementRetrieveResponse =
LedgerAccountStatementsAPI.LedgerAccountStatementRetrieveResponse;
export type LedgerAccountStatementCreateParams =
LedgerAccountStatementsAPI.LedgerAccountStatementCreateParams;
export import LedgerAccountStatementCreateResponse = LedgerAccountStatementsAPI.LedgerAccountStatementCreateResponse;
export import LedgerAccountStatementRetrieveResponse = LedgerAccountStatementsAPI.LedgerAccountStatementRetrieveResponse;
export import LedgerAccountStatementCreateParams = LedgerAccountStatementsAPI.LedgerAccountStatementCreateParams;
}
10 changes: 5 additions & 5 deletions src/resources/ledger-accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -514,10 +514,10 @@ export namespace LedgerAccountListParams {
}

export namespace LedgerAccounts {
export type LedgerAccount = LedgerAccountsAPI.LedgerAccount;
export import LedgerAccount = LedgerAccountsAPI.LedgerAccount;
export import LedgerAccountsPage = LedgerAccountsAPI.LedgerAccountsPage;
export type LedgerAccountCreateParams = LedgerAccountsAPI.LedgerAccountCreateParams;
export type LedgerAccountRetrieveParams = LedgerAccountsAPI.LedgerAccountRetrieveParams;
export type LedgerAccountUpdateParams = LedgerAccountsAPI.LedgerAccountUpdateParams;
export type LedgerAccountListParams = LedgerAccountsAPI.LedgerAccountListParams;
export import LedgerAccountCreateParams = LedgerAccountsAPI.LedgerAccountCreateParams;
export import LedgerAccountRetrieveParams = LedgerAccountsAPI.LedgerAccountRetrieveParams;
export import LedgerAccountUpdateParams = LedgerAccountsAPI.LedgerAccountUpdateParams;
export import LedgerAccountListParams = LedgerAccountsAPI.LedgerAccountListParams;
}
6 changes: 3 additions & 3 deletions src/resources/ledger-entries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,8 @@ export namespace LedgerEntryListParams {
}

export namespace LedgerEntries {
export type LedgerEntry = LedgerEntriesAPI.LedgerEntry;
export import LedgerEntry = LedgerEntriesAPI.LedgerEntry;
export import LedgerEntriesPage = LedgerEntriesAPI.LedgerEntriesPage;
export type LedgerEntryRetrieveParams = LedgerEntriesAPI.LedgerEntryRetrieveParams;
export type LedgerEntryListParams = LedgerEntriesAPI.LedgerEntryListParams;
export import LedgerEntryRetrieveParams = LedgerEntriesAPI.LedgerEntryRetrieveParams;
export import LedgerEntryListParams = LedgerEntriesAPI.LedgerEntryListParams;
}
12 changes: 6 additions & 6 deletions src/resources/ledger-event-handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -586,11 +586,11 @@ export interface LedgerEventHandlerListParams extends PageParams {
}

export namespace LedgerEventHandlers {
export type LedgerEventHandlerCreateResponse = LedgerEventHandlersAPI.LedgerEventHandlerCreateResponse;
export type LedgerEventHandlerRetrieveResponse = LedgerEventHandlersAPI.LedgerEventHandlerRetrieveResponse;
export type LedgerEventHandlerListResponse = LedgerEventHandlersAPI.LedgerEventHandlerListResponse;
export type LedgerEventHandlerDeleteResponse = LedgerEventHandlersAPI.LedgerEventHandlerDeleteResponse;
export import LedgerEventHandlerCreateResponse = LedgerEventHandlersAPI.LedgerEventHandlerCreateResponse;
export import LedgerEventHandlerRetrieveResponse = LedgerEventHandlersAPI.LedgerEventHandlerRetrieveResponse;
export import LedgerEventHandlerListResponse = LedgerEventHandlersAPI.LedgerEventHandlerListResponse;
export import LedgerEventHandlerDeleteResponse = LedgerEventHandlersAPI.LedgerEventHandlerDeleteResponse;
export import LedgerEventHandlerListResponsesPage = LedgerEventHandlersAPI.LedgerEventHandlerListResponsesPage;
export type LedgerEventHandlerCreateParams = LedgerEventHandlersAPI.LedgerEventHandlerCreateParams;
export type LedgerEventHandlerListParams = LedgerEventHandlersAPI.LedgerEventHandlerListParams;
export import LedgerEventHandlerCreateParams = LedgerEventHandlersAPI.LedgerEventHandlerCreateParams;
export import LedgerEventHandlerListParams = LedgerEventHandlersAPI.LedgerEventHandlerListParams;
}
Loading

0 comments on commit f7f367c

Please sign in to comment.