diff --git a/src/generated/graphql.tsx b/src/generated/graphql.tsx index b1b454f36..ef3a9da0e 100644 --- a/src/generated/graphql.tsx +++ b/src/generated/graphql.tsx @@ -879,7 +879,7 @@ export enum CountryCode { Tn = 'TN', /** Tonga */ To = 'TO', - /** Turkey */ + /** Türkiye */ Tr = 'TR', /** Trinidad and Tobago */ Tt = 'TT', @@ -1091,16 +1091,19 @@ export type CreateCustomerInput = { clientMutationId?: InputMaybe; country?: InputMaybe; currency?: InputMaybe; + customerType?: InputMaybe; email?: InputMaybe; externalId: Scalars['String']['input']; externalSalesforceId?: InputMaybe; + firstname?: InputMaybe; integrationCustomers?: InputMaybe>; invoiceGracePeriod?: InputMaybe; + lastname?: InputMaybe; legalName?: InputMaybe; legalNumber?: InputMaybe; logoUrl?: InputMaybe; metadata?: InputMaybe>; - name: Scalars['String']['input']; + name?: InputMaybe; netPaymentTerm?: InputMaybe; paymentProvider?: InputMaybe; paymentProviderCode?: InputMaybe; @@ -1768,10 +1771,13 @@ export type Customer = { /** Number of available credits from credit notes per customer */ creditNotesCreditsAvailableCount: Scalars['Int']['output']; currency?: Maybe; + customerType?: Maybe; deletedAt?: Maybe; + displayName: Scalars['String']['output']; email?: Maybe; externalId: Scalars['String']['output']; externalSalesforceId?: Maybe; + firstname?: Maybe; /** Define if a customer has an active wallet */ hasActiveWallet: Scalars['Boolean']['output']; /** Define if a customer has any credit note */ @@ -1781,6 +1787,7 @@ export type Customer = { id: Scalars['ID']['output']; invoiceGracePeriod?: Maybe; invoices?: Maybe>; + lastname?: Maybe; legalName?: Maybe; legalNumber?: Maybe; logoUrl?: Maybe; @@ -1867,6 +1874,11 @@ export type CustomerMetadataInput = { value: Scalars['String']['input']; }; +export enum CustomerTypeEnum { + Company = 'company', + Individual = 'individual' +} + export type CustomerUsage = { __typename?: 'CustomerUsage'; amountCents: Scalars['BigInt']['output']; @@ -3728,6 +3740,7 @@ export type Permissions = { addonsDelete: Scalars['Boolean']['output']; addonsUpdate: Scalars['Boolean']['output']; addonsView: Scalars['Boolean']['output']; + analyticsOverdueBalancesView: Scalars['Boolean']['output']; analyticsView: Scalars['Boolean']['output']; billableMetricsCreate: Scalars['Boolean']['output']; billableMetricsDelete: Scalars['Boolean']['output']; @@ -4575,7 +4588,7 @@ export type SubscriptionLifetimeUsage = { __typename?: 'SubscriptionLifetimeUsage'; lastThresholdAmountCents?: Maybe; nextThresholdAmountCents?: Maybe; - nextTresholdRatio?: Maybe; + nextThresholdRatio?: Maybe; totalUsageAmountCents: Scalars['BigInt']['output']; totalUsageFromDatetime: Scalars['ISO8601DateTime']['output']; totalUsageToDatetime: Scalars['ISO8601DateTime']['output']; @@ -5069,17 +5082,20 @@ export type UpdateCustomerInput = { clientMutationId?: InputMaybe; country?: InputMaybe; currency?: InputMaybe; + customerType?: InputMaybe; email?: InputMaybe; externalId: Scalars['String']['input']; externalSalesforceId?: InputMaybe; + firstname?: InputMaybe; id: Scalars['ID']['input']; integrationCustomers?: InputMaybe>; invoiceGracePeriod?: InputMaybe; + lastname?: InputMaybe; legalName?: InputMaybe; legalNumber?: InputMaybe; logoUrl?: InputMaybe; metadata?: InputMaybe>; - name: Scalars['String']['input']; + name?: InputMaybe; netPaymentTerm?: InputMaybe; paymentProvider?: InputMaybe; paymentProviderCode?: InputMaybe;