Skip to content

Interface: PackVersionDefinition

Defined in: types.ts:1747

The definition of the contents of a Pack at a specific version. This is the heart of the implementation of a Pack.

Extended by

Properties

defaultAuthentication?

optional defaultAuthentication: Authentication

Defined in: types.ts:1756

If specified, the user must provide personal authentication credentials before using the pack.


formats?

optional formats: Format[]

Defined in: types.ts:1797

Definitions of this pack's column formats. See Format.


formulaNamespace?

optional formulaNamespace: string

Defined in: types.ts:1785

Deprecated


formulas?

optional formulas: Formula[]

Defined in: types.ts:1793

Definitions of this pack's formulas. See Formula.

Note that button actions are also defined here. Buttons are simply formulas with isAction: true.


networkDomains?

optional networkDomains: string[]

Defined in: types.ts:1778

Any domain(s) to which this pack makes fetcher requests. The domains this pack connects to must be declared up front here, both to clearly communicate to users what a pack is capable of connecting to, and for security reasons. These network domains are enforced at execution time: any fetcher request to a domain not listed here will be rejected.

Only one network domain is allowed by default. If your pack has needs to connect to multiple domains contact Coda support for approval.


skillEntrypoints?

optional skillEntrypoints: SkillEntrypoints

Defined in: types.ts:1836

Mapping of skills to entrypoints that the pack agent can be invoked from.


skills?

optional skills: Skill[]

Defined in: types.ts:1805

Definitions of skills that can be executed within this pack.


syncTables?

optional syncTables: SyncTable[]

Defined in: types.ts:1801

Definitions of this pack's sync tables. See SyncTable.


systemConnectionAuthentication?

optional systemConnectionAuthentication: SystemAuthentication

Defined in: types.ts:1761

If specified, this pack requires system credentials to be set up via Coda's admin console in order to work when no explicit connection is specified by the user.


version

version: string

Defined in: types.ts:1752

The semantic version of the pack. This must be valid semantic version of the form 1, 1.2, or 1.2.3. When uploading a pack version, the semantic version must be greater than any previously uploaded version.