Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "1.0.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.0.1 (2026-06-03)

Full Changelog: [v1.0.0...v1.0.1](https://github.com/parallel-web/parallel-sdk-typescript/compare/v1.0.0...v1.0.1)

### Chores

* remove undocumented backwards-compat alias shims ([e9bcf03](https://github.com/parallel-web/parallel-sdk-typescript/commit/e9bcf03e2c2d46a7f615e0365688ddc0f2bdeeda))

## 1.0.0 (2026-06-02)

Full Changelog: [v0.5.0...v1.0.0](https://github.com/parallel-web/parallel-sdk-typescript/compare/v0.5.0...v1.0.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parallel-web",
"version": "1.0.0",
"version": "1.0.1",
"description": "The official TypeScript library for the Parallel API",
"author": "Parallel <support@parallel.ai>",
"types": "dist/index.d.ts",
Expand Down
116 changes: 0 additions & 116 deletions src/resources/beta/findall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -979,119 +979,3 @@ export declare namespace FindAll {
type FindAllSchemaParams as FindAllSchemaParams,
};
}

/**
* Backwards-compatible aliases (deprecated).
*
* Historically these types/resources were exported as `Findall*` (lowercase "a").
* The canonical names are now `FindAll*`.
*/
export class Findall extends FindAll {}

/** @deprecated Use `FindAllCandidateMatchStatusEvent` instead. */
export type FindallCandidateMatchStatusEvent = FindAllCandidateMatchStatusEvent;
/** @deprecated Use `FindAllEnrichInput` instead. */
export type FindallEnrichInput = FindAllEnrichInput;
/** @deprecated Use `FindAllExtendInput` instead. */
export type FindallExtendInput = FindAllExtendInput;
/** @deprecated Use `FindAllRun` instead. */
export type FindallRun = FindAllRun;
/** @deprecated Use `FindAllRunInput` instead. */
export type FindallRunInput = FindAllRunInput;
/** @deprecated Use `FindAllRunResult` instead. */
export type FindallRunResult = FindAllRunResult;
/** @deprecated Use `FindAllRunStatusEvent` instead. */
export type FindallRunStatusEvent = FindAllRunStatusEvent;
/** @deprecated Use `FindAllSchema` instead. */
export type FindallSchema = FindAllSchema;
/** @deprecated Use `FindAllSchemaUpdatedEvent` instead. */
export type FindallSchemaUpdatedEvent = FindAllSchemaUpdatedEvent;
/** @deprecated Use `IngestInput` instead. */
export type FindallIngestInput = IngestInput;
/** @deprecated Use `FindAllEventsResponse` instead. */
export type FindallEventsResponse = FindAllEventsResponse;
/** @deprecated Use `FindAllCreateParams` instead. */
export type FindallCreateParams = FindAllCreateParams;
/** @deprecated Use `FindAllRetrieveParams` instead. */
export type FindallRetrieveParams = FindAllRetrieveParams;
/** @deprecated Use `FindAllCancelParams` instead. */
export type FindallCancelParams = FindAllCancelParams;
/** @deprecated Use `FindAllEnrichParams` instead. */
export type FindallEnrichParams = FindAllEnrichParams;
/** @deprecated Use `FindAllEventsParams` instead. */
export type FindallEventsParams = FindAllEventsParams;
/** @deprecated Use `FindAllExtendParams` instead. */
export type FindallExtendParams = FindAllExtendParams;
/** @deprecated Use `FindAllIngestParams` instead. */
export type FindallIngestParams = FindAllIngestParams;
/** @deprecated Use `FindAllResultParams` instead. */
export type FindallResultParams = FindAllResultParams;
/** @deprecated Use `FindAllSchemaParams` instead. */
export type FindallSchemaParams = FindAllSchemaParams;

export declare namespace Findall {
export {
type FindallCandidateMatchStatusEvent as FindallCandidateMatchStatusEvent,
type FindallEnrichInput as FindallEnrichInput,
type FindallExtendInput as FindallExtendInput,
type FindallRun as FindallRun,
type FindallRunInput as FindallRunInput,
type FindallRunResult as FindallRunResult,
type FindallRunStatusEvent as FindallRunStatusEvent,
type FindallSchema as FindallSchema,
type FindallSchemaUpdatedEvent as FindallSchemaUpdatedEvent,
type FindallIngestInput as FindallIngestInput,
type FindallEventsResponse as FindallEventsResponse,
type FindallCreateParams as FindallCreateParams,
type FindallRetrieveParams as FindallRetrieveParams,
type FindallCancelParams as FindallCancelParams,
type FindallEnrichParams as FindallEnrichParams,
type FindallEventsParams as FindallEventsParams,
type FindallExtendParams as FindallExtendParams,
type FindallIngestParams as FindallIngestParams,
type FindallResultParams as FindallResultParams,
type FindallSchemaParams as FindallSchemaParams,
};
}

// Backwards-compat namespace members (deprecated). Previously these types
// existed as nested interfaces under their parent's namespace; they've since
// moved to top-level model types. Declaration merging here preserves the old
// `Parent.Member` import paths.
type _FindAllCandidate = FindAllCandidate;
type _FindAllRunStatus = FindAllRunStatus;
type _FindAllCandidateMetrics = FindAllCandidateMetrics;
type _MatchCondition = MatchCondition;
export namespace FindAllCandidateMatchStatusEvent {
/** @deprecated Use the top-level `FindAllCandidate` instead. */
export type Data = _FindAllCandidate;
}
export namespace FindAllCreateParams {
/** @deprecated Use the top-level `MatchCondition` instead. */
export type MatchCondition = _MatchCondition;
}
// FindAllRunInput and FindAllSchema already declare `export namespace`s above;
// these additional `export namespace` blocks merge with them via TS declaration
// merging, augmenting the existing namespaces with the deprecated `MatchCondition`
// member. (`declare module` would not work here — it's for ambient module
// augmentation, not same-file declaration merging.)
export namespace FindAllRunInput {
/** @deprecated Use the top-level `MatchCondition` instead. */
export type MatchCondition = _MatchCondition;
}
export namespace FindAllSchema {
/** @deprecated Use the top-level `MatchCondition` instead. */
export type MatchCondition = _MatchCondition;
}
export namespace FindAllRun {
/** @deprecated Use the top-level `FindAllRunStatus` instead. */
export type Status = _FindAllRunStatus;
export namespace Status {
/** @deprecated Use the top-level `FindAllCandidateMetrics` instead. */
export type Metrics = _FindAllCandidateMetrics;
}
}
export namespace FindAllRunResult {
/** @deprecated Use the top-level `FindAllCandidate` instead. */
export type Candidate = _FindAllCandidate;
}
21 changes: 0 additions & 21 deletions src/resources/beta/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
export { Beta } from './beta';
export {
FindAll,
Findall,
type FindAllCandidate,
type FindAllCandidateMatchStatusEvent,
type FindAllCandidateMetrics,
Expand Down Expand Up @@ -32,24 +31,4 @@ export {
type FindAllIngestParams,
type FindAllResultParams,
type FindAllSchemaParams,
type FindallCandidateMatchStatusEvent,
type FindallEnrichInput,
type FindallExtendInput,
type FindallRun,
type FindallRunInput,
type FindallRunResult,
type FindallRunStatusEvent,
type FindallSchema,
type FindallSchemaUpdatedEvent,
type FindallIngestInput,
type FindallEventsResponse,
type FindallCreateParams,
type FindallRetrieveParams,
type FindallCancelParams,
type FindallEnrichParams,
type FindallEventsParams,
type FindallExtendParams,
type FindallIngestParams,
type FindallResultParams,
type FindallSchemaParams,
} from './findall';
27 changes: 0 additions & 27 deletions src/resources/task-run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -773,30 +773,3 @@ export declare namespace TaskRun {
type TaskRunResultParams as TaskRunResultParams,
};
}

// Backwards-compat namespace members (deprecated). Previously these types
// existed as nested interfaces under the parent type's namespace; they've
// since moved to top-level model types. Declaration merging here preserves
// the old `Parent.Member` import paths.
type _TaskAdvancedSettings = TaskAdvancedSettings;
type _TaskRunProgressMessageEvent = TaskRunProgressMessageEvent;
type _TaskRunProgressStatsEvent = TaskRunProgressStatsEvent;
type _TaskRunSourceStats = TaskRunSourceStats;
export namespace RunInput {
/** @deprecated Use the top-level `TaskAdvancedSettings` instead. */
export type AdvancedSettings = _TaskAdvancedSettings;
}
export namespace TaskRunCreateParams {
/** @deprecated Use the top-level `TaskAdvancedSettings` instead. */
export type AdvancedSettings = _TaskAdvancedSettings;
}
export namespace TaskRunEventsResponse {
/** @deprecated Use the top-level `TaskRunProgressMessageEvent` instead. */
export type TaskRunProgressMessageEvent = _TaskRunProgressMessageEvent;
/** @deprecated Use the top-level `TaskRunProgressStatsEvent` instead. */
export type TaskRunProgressStatsEvent = _TaskRunProgressStatsEvent;
export namespace TaskRunProgressStatsEvent {
/** @deprecated Use the top-level `TaskRunSourceStats` instead. */
export type SourceStats = _TaskRunSourceStats;
}
}
9 changes: 0 additions & 9 deletions src/resources/top-level.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,12 +382,3 @@ export declare namespace TopLevel {
type SearchParams as SearchParams,
};
}

// Backwards-compat namespace member (deprecated). `AdvancedExtractSettings.FullContentSettings`
// was previously a nested interface; the shape now lives as the top-level
// `FullContentSettings` model. Declaration merging here preserves the old path.
export namespace AdvancedExtractSettings {
/** @deprecated Use the top-level `FullContentSettings` instead. */
export type FullContentSettings = TopLevelFullContentSettings;
}
type TopLevelFullContentSettings = FullContentSettings;
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.0.0'; // x-release-please-version
export const VERSION = '1.0.1'; // x-release-please-version
Loading