@graph8/sdk 0.12.2 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1739,6 +1739,298 @@ declare const createDealsClient: (apiKey: string, apiUrl?: string) => {
1739
1739
  }>;
1740
1740
  };
1741
1741
 
1742
+ /** A custom object type in your workspace — a record type you define. */
1743
+ interface CustomObject {
1744
+ /** Stable API slug, e.g. `invoices`. */
1745
+ slug: string;
1746
+ singular_noun: string;
1747
+ plural_noun: string;
1748
+ /** True for object types graph8 ships; system objects cannot be deleted. */
1749
+ is_system: boolean;
1750
+ is_archived: boolean;
1751
+ }
1752
+ /**
1753
+ * One attribute on a custom object, and the rules its values must satisfy.
1754
+ *
1755
+ * `attribute_type` is one of 16 supported types and decides how a value is
1756
+ * validated and canonicalized: `text`, `number`, `currency`, `date`,
1757
+ * `timestamp`, `checkbox`, `select`, `status`, `email_address`, `phone_number`,
1758
+ * `domain`, `location`, `personal_name`, `record_reference`, `rating`,
1759
+ * `actor_reference`.
1760
+ */
1761
+ interface CustomObjectAttribute {
1762
+ slug: string;
1763
+ attribute_type: string;
1764
+ is_required: boolean;
1765
+ /** No two ACTIVE records may hold the same value. A collision returns 409. */
1766
+ is_unique: boolean;
1767
+ is_multiselect: boolean;
1768
+ /** Type-specific configuration, e.g. the allowed options for a `select`. */
1769
+ config: Record<string, unknown>;
1770
+ }
1771
+ /** One record, with its currently active attribute values. */
1772
+ interface CustomObjectRecord {
1773
+ id: string;
1774
+ object_slug: string;
1775
+ /**
1776
+ * Values keyed by attribute slug. Untyped by necessity — the valid keys come
1777
+ * from YOUR attribute definitions at runtime, so call `listAttributes` for the
1778
+ * schema. Saying `any` here would imply the shape was considered and found to
1779
+ * be free.
1780
+ */
1781
+ values: Record<string, unknown>;
1782
+ is_archived: boolean;
1783
+ created_at: string | null;
1784
+ updated_at: string | null;
1785
+ }
1786
+ /** One generation of one attribute's value. */
1787
+ interface CustomObjectHistoryEntry {
1788
+ attribute: string;
1789
+ value: unknown;
1790
+ active_from: string | null;
1791
+ /** Null means this value is still in force. */
1792
+ active_until: string | null;
1793
+ actor_id: string | null;
1794
+ }
1795
+ interface CustomObjectHistory {
1796
+ record_id: string;
1797
+ entries: CustomObjectHistoryEntry[];
1798
+ }
1799
+ interface ListRecordsParams {
1800
+ page?: number;
1801
+ /** 1-200, default 50. */
1802
+ limit?: number;
1803
+ /** Opaque cursor from a prior response. Takes precedence over `page`. */
1804
+ cursor?: string;
1805
+ }
1806
+ /**
1807
+ * Pagination envelope for record listings.
1808
+ *
1809
+ * Named distinctly rather than `PaginationMeta`: `deals.ts` and `quotes.ts` each
1810
+ * already declare their own structurally identical `PaginationMeta`, and one of
1811
+ * them is re-exported from `index.ts` — so a third with that name is a
1812
+ * `TS2300: Duplicate identifier` at the package's export site. Consolidating the
1813
+ * three into one shared type is worth doing and is not this change.
1814
+ */
1815
+ interface ObjectPagination {
1816
+ page: number;
1817
+ limit: number;
1818
+ total: number;
1819
+ has_next: boolean;
1820
+ next_cursor: string | null;
1821
+ }
1822
+ /**
1823
+ * Custom Objects API — your own record types, their schema, and their records (M6-3).
1824
+ * Requires an API key (server-side). On the hardened HTTP core: throws a typed
1825
+ * `G8Error` on failure and retries transient errors.
1826
+ *
1827
+ * PREVIEW AND GATED. Every endpoint returns 403 `app_not_enabled` until the
1828
+ * custom-objects surface is switched on for the platform. It is off by default,
1829
+ * so a call fails fast rather than returning an empty list that reads as "you
1830
+ * have no objects".
1831
+ *
1832
+ * HOW THIS DIFFERS FROM `g8.fields`. A FIELD adds a column to an existing
1833
+ * contact or company. A CUSTOM OBJECT is a whole new record type with its own
1834
+ * attributes and its own records. Use fields to extend a contact; use custom
1835
+ * objects to model an invoice, a shipment, or a subscription.
1836
+ *
1837
+ * THREE BEHAVIOURS WORTH KNOWING BEFORE YOU WRITE
1838
+ *
1839
+ * 1. An unknown field is REJECTED (422), not ignored. A typo does not silently
1840
+ * lose your data, and the response lists every problem at once so a payload
1841
+ * with three mistakes takes one round trip to fix.
1842
+ * 2. `update` is a PARTIAL write. Attributes you omit are left alone; sending
1843
+ * an explicit `null` CLEARS one. The two are deliberately different.
1844
+ * 3. `archive` does not destroy anything. The record leaves listings, stays
1845
+ * readable by id, and keeps its history.
1846
+ *
1847
+ * Backed by:
1848
+ * GET /api/v1/objects
1849
+ * GET /api/v1/objects/{slug}
1850
+ * GET /api/v1/objects/{slug}/attributes
1851
+ * GET /api/v1/objects/{slug}/records
1852
+ * POST /api/v1/objects/{slug}/records
1853
+ * GET /api/v1/objects/{slug}/records/{id}
1854
+ * PATCH /api/v1/objects/{slug}/records/{id}
1855
+ * DELETE /api/v1/objects/{slug}/records/{id}
1856
+ * GET /api/v1/objects/{slug}/records/{id}/history
1857
+ */
1858
+ declare const createObjectsClient: (apiKey: string, apiUrl?: string) => {
1859
+ /** List the custom object types in your workspace. */
1860
+ list(): Promise<{
1861
+ data: CustomObject[];
1862
+ }>;
1863
+ /** Fetch one object type by slug. */
1864
+ get(objectSlug: string): Promise<CustomObject>;
1865
+ /** The object's attributes — the schema its records must satisfy. */
1866
+ listAttributes(objectSlug: string): Promise<{
1867
+ data: CustomObjectAttribute[];
1868
+ }>;
1869
+ /** Paginated records with their current values. Archived records are excluded. */
1870
+ listRecords(objectSlug: string, params?: ListRecordsParams): Promise<{
1871
+ data: CustomObjectRecord[];
1872
+ pagination?: ObjectPagination;
1873
+ }>;
1874
+ /**
1875
+ * Create a record. Every field is validated against the object's attributes;
1876
+ * an unknown one is a 422 listing every problem at once, and a collision on a
1877
+ * unique attribute is a 409.
1878
+ */
1879
+ createRecord(objectSlug: string, values: Record<string, unknown>): Promise<CustomObjectRecord>;
1880
+ /** Fetch one record with its currently active values. */
1881
+ getRecord(objectSlug: string, recordId: string): Promise<CustomObjectRecord>;
1882
+ /**
1883
+ * Update a record. PARTIAL: only the attributes you send are touched, so
1884
+ * required attributes you omit are left alone rather than reported missing.
1885
+ * Sending an explicit `null` CLEARS that attribute.
1886
+ *
1887
+ * Values are versioned rather than overwritten, so the previous value stays
1888
+ * readable through `history`.
1889
+ */
1890
+ updateRecord(objectSlug: string, recordId: string, values: Record<string, unknown>): Promise<CustomObjectRecord>;
1891
+ /**
1892
+ * Archive a record. It leaves listings, stays readable by id, and keeps its
1893
+ * history and associations. Nothing is destroyed.
1894
+ */
1895
+ archiveRecord(objectSlug: string, recordId: string): Promise<CustomObjectRecord>;
1896
+ /**
1897
+ * A record's value timeline, newest first. An entry whose `active_until` is
1898
+ * null is the value currently in force.
1899
+ */
1900
+ history(objectSlug: string, recordId: string, limit?: number): Promise<CustomObjectHistory>;
1901
+ };
1902
+
1903
+ /**
1904
+ * App lifecycle. `draft` serves no traffic; `published` is live; `suspended` is a
1905
+ * platform action and cannot be set through this client; `archived` is retired.
1906
+ *
1907
+ * `active` is the pre-D12c spelling of `published` and is still accepted on write
1908
+ * by the backend, so an older caller keeps working. Prefer `published`.
1909
+ */
1910
+ type AppStatus = "draft" | "published" | "suspended" | "archived";
1911
+ /** Install / consent lifecycle for one client org. */
1912
+ type InstallStatus = "pending" | "consented" | "revoked" | "suspended" | "expired";
1913
+ /** An app you build on graph8, which your customers install into their workspace. */
1914
+ interface App {
1915
+ app_id: string;
1916
+ builder_org_id: string;
1917
+ /** Stable identifier, unique within your organization — not globally. */
1918
+ slug: string;
1919
+ name: string;
1920
+ status: string;
1921
+ /** https-only origins a BROWSER app token may be presented from. */
1922
+ registered_origins: string[];
1923
+ default_hostname: string | null;
1924
+ created_at: string | null;
1925
+ archived_at: string | null;
1926
+ }
1927
+ /** One client organization's installation of your app. */
1928
+ interface AppInstallation {
1929
+ install_id: string;
1930
+ app_id: string;
1931
+ client_org_id: string;
1932
+ status: string;
1933
+ consented_scopes: string[];
1934
+ created_at: string | null;
1935
+ revoked_at: string | null;
1936
+ }
1937
+ /** Credits your app consumed in one calendar month. */
1938
+ interface AppUsageSummary {
1939
+ app_id: string;
1940
+ /** Calendar month, `YYYY-MM`. */
1941
+ period: string;
1942
+ total_credits: number;
1943
+ event_count: number;
1944
+ /**
1945
+ * Credits per CLIENT org — whose data was touched, not who paid. You pay for
1946
+ * all of them, so a breakdown keyed on the payer would collapse into one row.
1947
+ */
1948
+ per_client_credits: Record<string, number>;
1949
+ }
1950
+ /** A hard credit cap. `null` from `getLimit` means uncapped. */
1951
+ interface AppLimit {
1952
+ app_id: string;
1953
+ window: string;
1954
+ credit_cap: number;
1955
+ created_at: string | null;
1956
+ }
1957
+ interface AppCreateParams {
1958
+ name: string;
1959
+ /** Unique within your organization. Lowercased on write. */
1960
+ slug: string;
1961
+ /**
1962
+ * https-only origins a browser app token may be presented from. An `http://`
1963
+ * origin is rejected at registration — a bearer token sent over plain http is
1964
+ * a token disclosed to the network.
1965
+ */
1966
+ registered_origins?: string[];
1967
+ }
1968
+ /**
1969
+ * Apps API — manage the apps you build on graph8 (M6). Requires an API key
1970
+ * (server-side). On the hardened HTTP core: throws a typed `G8Error` on failure
1971
+ * and retries transient errors.
1972
+ *
1973
+ * PREVIEW AND GATED. Every endpoint returns 403 `builder_not_allowlisted` unless
1974
+ * the platform is enabled AND your organization is on the builder allowlist.
1975
+ * Both are off by default, so a call fails fast and loudly rather than returning
1976
+ * an empty list that looks like "you have no apps".
1977
+ *
1978
+ * A note on 404s: an app id belonging to ANOTHER organization returns 404, not
1979
+ * 403 — the two are deliberately indistinguishable so app ids cannot be
1980
+ * enumerated by guessing.
1981
+ *
1982
+ * Backed by:
1983
+ * GET /api/v1/apps — list your apps
1984
+ * POST /api/v1/apps — create one (starts in `draft`)
1985
+ * GET /api/v1/apps/{app_id} — fetch one
1986
+ * POST /api/v1/apps/{app_id}/status — move it through its lifecycle
1987
+ * GET /api/v1/apps/{app_id}/installs — who installed it, and their consent
1988
+ * GET /api/v1/apps/{app_id}/usage — credits consumed in a month
1989
+ * GET /api/v1/apps/{app_id}/limit — the hard cap, or null
1990
+ */
1991
+ declare const createAppsClient: (apiKey: string, apiUrl?: string) => {
1992
+ /** List your organization's apps, newest first. */
1993
+ list(): Promise<{
1994
+ data: App[];
1995
+ }>;
1996
+ /** Fetch one of your apps. Throws `G8Error` (404) if it is not yours. */
1997
+ get(appId: string): Promise<App>;
1998
+ /**
1999
+ * Create an app. It starts in `draft` and serves no traffic until published.
2000
+ * Throws `G8Error` (409) when the slug is already taken in your org.
2001
+ */
2002
+ create(params: AppCreateParams): Promise<App>;
2003
+ /**
2004
+ * Move an app through its lifecycle: `draft` → `published` → `archived`.
2005
+ *
2006
+ * `suspended` is excluded from the parameter type on purpose: it is the
2007
+ * platform's kill switch for an abusive app, the backend refuses it with a
2008
+ * 403, and a builder who could set it could also unset it.
2009
+ */
2010
+ setStatus(appId: string, status: Exclude<AppStatus, "suspended">): Promise<App>;
2011
+ /**
2012
+ * The client organizations that installed this app, and their consent state.
2013
+ * Includes `pending` and `revoked` installs — if your app cannot reach a
2014
+ * tenant, this is where you see why.
2015
+ */
2016
+ listInstalls(appId: string): Promise<{
2017
+ data: AppInstallation[];
2018
+ }>;
2019
+ /**
2020
+ * Credits this app consumed in a calendar month, broken down per client org.
2021
+ * Defaults to the current month. A month with no usage returns zeroes, not a
2022
+ * 404 — "nothing happened" is an answer.
2023
+ */
2024
+ usage(appId: string, period?: string): Promise<AppUsageSummary>;
2025
+ /**
2026
+ * This app's hard credit cap, or `null` when it is uncapped.
2027
+ *
2028
+ * `null` is the real answer, not an empty object: there is no "unlimited"
2029
+ * sentinel, so an accidental zero can never read as "no limit".
2030
+ */
2031
+ getLimit(appId: string): Promise<AppLimit | null>;
2032
+ };
2033
+
1742
2034
  /** A field (column) definition on contacts or companies — base or custom. */
1743
2035
  interface Field {
1744
2036
  id: number | null;
@@ -3202,6 +3494,8 @@ declare class G8 {
3202
3494
  /** @internal */ _notes: ReturnType<typeof createNotesClient> | null;
3203
3495
  /** @internal */ _tasks: ReturnType<typeof createTasksClient> | null;
3204
3496
  /** @internal */ _fields: ReturnType<typeof createFieldsClient> | null;
3497
+ /** @internal */ _apps: ReturnType<typeof createAppsClient> | null;
3498
+ /** @internal */ _objects: ReturnType<typeof createObjectsClient> | null;
3205
3499
  /** @internal */ _deals: ReturnType<typeof createDealsClient> | null;
3206
3500
  /** @internal */ _inbox: ReturnType<typeof createInboxClient> | null;
3207
3501
  /** @internal */ _quotes: ReturnType<typeof createQuotesClient> | null;
@@ -3344,7 +3638,7 @@ declare class G8 {
3344
3638
  contact_id?: number;
3345
3639
  user_email?: string;
3346
3640
  campaign_id?: string;
3347
- date_from? /** Marketplace — for SDR/AE talent: profile, hire offers (accept/reject), active hirings (requires API key). */: string;
3641
+ date_from?: string;
3348
3642
  date_to?: string;
3349
3643
  limit?: number;
3350
3644
  page?: number;
@@ -3486,6 +3780,39 @@ declare class G8 {
3486
3780
  };
3487
3781
  }>;
3488
3782
  };
3783
+ /** Apps you build on graph8 — lifecycle, installs, usage, limits (requires API key). PREVIEW. */
3784
+ get apps(): {
3785
+ list(): Promise<{
3786
+ data: App[];
3787
+ }>;
3788
+ get(appId: string): Promise<App>;
3789
+ create(params: AppCreateParams): Promise<App>;
3790
+ setStatus(appId: string, status: Exclude<AppStatus, "suspended">): Promise<App>;
3791
+ listInstalls(appId: string): Promise<{
3792
+ data: AppInstallation[];
3793
+ }>;
3794
+ usage(appId: string, period?: string): Promise<AppUsageSummary>;
3795
+ getLimit(appId: string): Promise<AppLimit | null>;
3796
+ };
3797
+ /** Custom object types, their schema, and their records (requires API key). PREVIEW. */
3798
+ get objects(): {
3799
+ list(): Promise<{
3800
+ data: CustomObject[];
3801
+ }>;
3802
+ get(objectSlug: string): Promise<CustomObject>;
3803
+ listAttributes(objectSlug: string): Promise<{
3804
+ data: CustomObjectAttribute[];
3805
+ }>;
3806
+ listRecords(objectSlug: string, params?: ListRecordsParams): Promise<{
3807
+ data: CustomObjectRecord[];
3808
+ pagination?: ObjectPagination;
3809
+ }>;
3810
+ createRecord(objectSlug: string, values: Record<string, unknown>): Promise<CustomObjectRecord>;
3811
+ getRecord(objectSlug: string, recordId: string): Promise<CustomObjectRecord>;
3812
+ updateRecord(objectSlug: string, recordId: string, values: Record<string, unknown>): Promise<CustomObjectRecord>;
3813
+ archiveRecord(objectSlug: string, recordId: string): Promise<CustomObjectRecord>;
3814
+ history(objectSlug: string, recordId: string, limit?: number): Promise<CustomObjectHistory>;
3815
+ };
3489
3816
  /** Deals and pipelines (requires API key). */
3490
3817
  get deals(): {
3491
3818
  pipelines(): Promise<{
@@ -3643,7 +3970,7 @@ declare class G8 {
3643
3970
  };
3644
3971
  }>;
3645
3972
  nodeTypes(params?: {
3646
- type? /** Identify a user with properties. */: string;
3973
+ type?: string;
3647
3974
  }): Promise<{
3648
3975
  data: NodeTypeSchema[];
3649
3976
  }>;
@@ -4303,4 +4630,4 @@ interface Graph8ServiceClient {
4303
4630
  */
4304
4631
  declare function createGraph8ServiceClient(config: Graph8ServiceClientConfig): Graph8ServiceClient;
4305
4632
 
4306
- export { type AddToSequenceConfig, type AgencyClient, type AgencyInfo, type AppRequest, type AppRequestOptions, type AppTokenResponse, type AudienceSync, type AudienceSyncCreateParams, type AudienceSyncError, type AudienceSyncMode, type AudienceSyncPlatform, type AudienceSyncRun, type AudienceSyncUpdateParams, type Booking, type BookingRequest, type CalendarConfig, type CallGradingResult, type Campaign, type CampaignCreateConfig, type CampaignLaunchExecution, type CampaignLaunchResult, type ChatConfig, type Company, type CompanyColumn, type CompanyColumnCreateParams, type CompanyContact, type CompanyEnrichment, type CompanyListParams, type CompanyUpdateParams, type ConstructEventOptions, type Contact, type ContactColumn, type ContactColumnCreateParams, type ContactCreateParams, type ContactDeal, type ContactList, type ContactListParams, type ContactUpdateParams, type CopilotConfig, type CreatedField, DEFAULT_APP_API, type Deal, type DealCreateParams, type DealListParams, type DealUpdateParams, type DialerAgentSummary, type DialerAgentsListParams, type DialerAgentsListResult, type DialerNumberInfo, type DialerNumbersListResult, type DialerReportFilters, type DialerReportMetric, type DialerSessionCreateParams, type DialerSessionCreateResult, type DialerSessionResumeResult, type DialerSessionStatus, type DialerSessionStatusUpdateResult, type DialerSessionSummary, type DialerSessionsListParams, type DialerSessionsListResult, type DialerStatsParams, type DialerStatsResult, type EmailVerification, type EnrichLookupResult, type EvidenceKey, type Field, type FieldCreateParams, type FieldDeleteParams, type G8Config, G8Error, type G8PrivacyConfig, type GlobalContextDocument, type Graph8AppClient, type Graph8AppClientConfig, type Graph8ServiceClient, type Graph8ServiceClientConfig, type ICP, type IdentifyProperties, type InboxAssignResult, type InboxAssignee, type InboxChannel, type InboxContact, type InboxDraft, type InboxListParams, type InboxMessage, type InboxSendParams, type InboxSendResult, type InboxTag, type InboxTagResult, type InboxThread, type IntelligenceData, type IntentCompany, type IntentContact, type IntentKeyword, type IntentPage, type IntentSignals, type IntentStats, type IntentVisitor, KNOWN_WEBHOOK_EVENTS, type ListContact, type MarketplaceHiring, type MarketplaceOffer, type MarketplaceProfile, type MeetingAnalysis, type MeetingAttendee, type MeetingDetail, type MeetingListParams, type MeetingSummary, type MeetingTranscriptLine, type MissedCallback, type MissedCallbacksResult, type NodeTypeSchema, type Note, type PaginatedResponse, type PaginationMeta$1 as PaginationMeta, type PersonEnrichment, type Persona, type Pipeline, type PipelineStage, type PipelineSuggestion, type QuotableProduct, type QuoteCreateParams, type QuoteDetail, type QuoteLineItem, type QuoteListParams, type QuoteSendParams, type QuoteSettings, type QuoteStatus, type QuoteSummary, type QuoteUpdateParams, type RequestOptions, type ResearchReport, type SearchCompanyItem, type SearchCondition, type SearchContactItem, type SearchFilter, type SearchOperator, type SearchParams, type SearchResults, type SearchSaveParams, type SearchSaveResult, type Sequence, type SequenceActionResult, type SequenceAnalytics, type SequenceChannelConfig, type SequenceContactItem, type SequenceContactsParams, type SequenceCreateParams, type SequenceCreateResult, type SequenceDetail, type SequenceKind, type SequenceListItem, type SequenceListParams, type SequencePreview, type SequencePreviewChannel, type SequencePreviewStep, type SequenceStepConfig, type SequenceStepInputType, type SequenceStepType, type SequenceStepUpdateParams, type SequenceUpdateParams, type SetFieldValueParams, type Skill, type SkillCreateAPIParams, type SkillCreateLLMParams, type SkillInputField, type SkillListParams, type SkillTemplate, type SkillType, type SkillUpdateAPIParams, type SkillUpdateLLMParams, type Snippet, type StageCreateParams, type StagePipeline, type StagePipelineCreateParams, type StagePipelineStage, type StagePipelineUpdateParams, type StageUpdateParams, type Task, type TaskCreateParams, type TaskListParams, type TaskUpdateParams, type TimeSlot, type TokenManager, type TrackProperties, type VisitorCompany, type VisitorScore, type VoicePagination, type WebhookEvent, type WebhookEventPayload, WebhookSignatureError, type Workflow, type WorkflowConfig, type WorkflowConnection, type WorkflowCreateParams, type WorkflowExecution, type WorkflowListParams, type WorkflowNode, type WorkflowUpdateParams, backoffDelayMs, constructEvent, createAppRequester, createGraph8AppClient, createGraph8ServiceClient, createTokenManager, exchangeBrowserToken, exchangeServiceToken, g8, isRetryableStatus, paginate, parseRetryAfter, request };
4633
+ export { type AddToSequenceConfig, type AgencyClient, type AgencyInfo, type App, type AppCreateParams, type AppInstallation, type AppLimit, type AppRequest, type AppRequestOptions, type AppStatus, type AppTokenResponse, type AppUsageSummary, type AudienceSync, type AudienceSyncCreateParams, type AudienceSyncError, type AudienceSyncMode, type AudienceSyncPlatform, type AudienceSyncRun, type AudienceSyncUpdateParams, type Booking, type BookingRequest, type CalendarConfig, type CallGradingResult, type Campaign, type CampaignCreateConfig, type CampaignLaunchExecution, type CampaignLaunchResult, type ChatConfig, type Company, type CompanyColumn, type CompanyColumnCreateParams, type CompanyContact, type CompanyEnrichment, type CompanyListParams, type CompanyUpdateParams, type ConstructEventOptions, type Contact, type ContactColumn, type ContactColumnCreateParams, type ContactCreateParams, type ContactDeal, type ContactList, type ContactListParams, type ContactUpdateParams, type CopilotConfig, type CreatedField, type CustomObject, type CustomObjectAttribute, type CustomObjectHistory, type CustomObjectHistoryEntry, type CustomObjectRecord, DEFAULT_APP_API, type Deal, type DealCreateParams, type DealListParams, type DealUpdateParams, type DialerAgentSummary, type DialerAgentsListParams, type DialerAgentsListResult, type DialerNumberInfo, type DialerNumbersListResult, type DialerReportFilters, type DialerReportMetric, type DialerSessionCreateParams, type DialerSessionCreateResult, type DialerSessionResumeResult, type DialerSessionStatus, type DialerSessionStatusUpdateResult, type DialerSessionSummary, type DialerSessionsListParams, type DialerSessionsListResult, type DialerStatsParams, type DialerStatsResult, type EmailVerification, type EnrichLookupResult, type EvidenceKey, type Field, type FieldCreateParams, type FieldDeleteParams, type G8Config, G8Error, type G8PrivacyConfig, type GlobalContextDocument, type Graph8AppClient, type Graph8AppClientConfig, type Graph8ServiceClient, type Graph8ServiceClientConfig, type ICP, type IdentifyProperties, type InboxAssignResult, type InboxAssignee, type InboxChannel, type InboxContact, type InboxDraft, type InboxListParams, type InboxMessage, type InboxSendParams, type InboxSendResult, type InboxTag, type InboxTagResult, type InboxThread, type InstallStatus, type IntelligenceData, type IntentCompany, type IntentContact, type IntentKeyword, type IntentPage, type IntentSignals, type IntentStats, type IntentVisitor, KNOWN_WEBHOOK_EVENTS, type ListContact, type ListRecordsParams, type MarketplaceHiring, type MarketplaceOffer, type MarketplaceProfile, type MeetingAnalysis, type MeetingAttendee, type MeetingDetail, type MeetingListParams, type MeetingSummary, type MeetingTranscriptLine, type MissedCallback, type MissedCallbacksResult, type NodeTypeSchema, type Note, type ObjectPagination, type PaginatedResponse, type PaginationMeta$1 as PaginationMeta, type PersonEnrichment, type Persona, type Pipeline, type PipelineStage, type PipelineSuggestion, type QuotableProduct, type QuoteCreateParams, type QuoteDetail, type QuoteLineItem, type QuoteListParams, type QuoteSendParams, type QuoteSettings, type QuoteStatus, type QuoteSummary, type QuoteUpdateParams, type RequestOptions, type ResearchReport, type SearchCompanyItem, type SearchCondition, type SearchContactItem, type SearchFilter, type SearchOperator, type SearchParams, type SearchResults, type SearchSaveParams, type SearchSaveResult, type Sequence, type SequenceActionResult, type SequenceAnalytics, type SequenceChannelConfig, type SequenceContactItem, type SequenceContactsParams, type SequenceCreateParams, type SequenceCreateResult, type SequenceDetail, type SequenceKind, type SequenceListItem, type SequenceListParams, type SequencePreview, type SequencePreviewChannel, type SequencePreviewStep, type SequenceStepConfig, type SequenceStepInputType, type SequenceStepType, type SequenceStepUpdateParams, type SequenceUpdateParams, type SetFieldValueParams, type Skill, type SkillCreateAPIParams, type SkillCreateLLMParams, type SkillInputField, type SkillListParams, type SkillTemplate, type SkillType, type SkillUpdateAPIParams, type SkillUpdateLLMParams, type Snippet, type StageCreateParams, type StagePipeline, type StagePipelineCreateParams, type StagePipelineStage, type StagePipelineUpdateParams, type StageUpdateParams, type Task, type TaskCreateParams, type TaskListParams, type TaskUpdateParams, type TimeSlot, type TokenManager, type TrackProperties, type VisitorCompany, type VisitorScore, type VoicePagination, type WebhookEvent, type WebhookEventPayload, WebhookSignatureError, type Workflow, type WorkflowConfig, type WorkflowConnection, type WorkflowCreateParams, type WorkflowExecution, type WorkflowListParams, type WorkflowNode, type WorkflowUpdateParams, backoffDelayMs, constructEvent, createAppRequester, createGraph8AppClient, createGraph8ServiceClient, createTokenManager, exchangeBrowserToken, exchangeServiceToken, g8, isRetryableStatus, paginate, parseRetryAfter, request };