@linear/sdk 65.1.0 → 65.2.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/README.md +3 -1
- package/dist/_generated_documents.d.ts +455 -2
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +79 -1
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.map +1 -1
- package/package.json +3 -4
package/dist/_generated_sdk.d.ts
CHANGED
|
@@ -9385,6 +9385,84 @@ export declare class ReactionWebhookPayload {
|
|
|
9385
9385
|
/** The user that created the reaction. */
|
|
9386
9386
|
user?: UserChildWebhookPayload;
|
|
9387
9387
|
}
|
|
9388
|
+
/**
|
|
9389
|
+
* A generic payload return from entity archive mutations.
|
|
9390
|
+
*
|
|
9391
|
+
* @param request - function to call the graphql client
|
|
9392
|
+
* @param data - L.ReleaseArchivePayloadFragment response data
|
|
9393
|
+
*/
|
|
9394
|
+
export declare class ReleaseArchivePayload extends Request {
|
|
9395
|
+
constructor(request: LinearRequest, data: L.ReleaseArchivePayloadFragment);
|
|
9396
|
+
/** The identifier of the last sync operation. */
|
|
9397
|
+
lastSyncId: number;
|
|
9398
|
+
/** Whether the operation was successful. */
|
|
9399
|
+
success: boolean;
|
|
9400
|
+
}
|
|
9401
|
+
/**
|
|
9402
|
+
* ReleasePayload model
|
|
9403
|
+
*
|
|
9404
|
+
* @param request - function to call the graphql client
|
|
9405
|
+
* @param data - L.ReleasePayloadFragment response data
|
|
9406
|
+
*/
|
|
9407
|
+
export declare class ReleasePayload extends Request {
|
|
9408
|
+
constructor(request: LinearRequest, data: L.ReleasePayloadFragment);
|
|
9409
|
+
/** The identifier of the last sync operation. */
|
|
9410
|
+
lastSyncId: number;
|
|
9411
|
+
/** Whether the operation was successful. */
|
|
9412
|
+
success: boolean;
|
|
9413
|
+
}
|
|
9414
|
+
/**
|
|
9415
|
+
* A generic payload return from entity archive mutations.
|
|
9416
|
+
*
|
|
9417
|
+
* @param request - function to call the graphql client
|
|
9418
|
+
* @param data - L.ReleasePipelineArchivePayloadFragment response data
|
|
9419
|
+
*/
|
|
9420
|
+
export declare class ReleasePipelineArchivePayload extends Request {
|
|
9421
|
+
constructor(request: LinearRequest, data: L.ReleasePipelineArchivePayloadFragment);
|
|
9422
|
+
/** The identifier of the last sync operation. */
|
|
9423
|
+
lastSyncId: number;
|
|
9424
|
+
/** Whether the operation was successful. */
|
|
9425
|
+
success: boolean;
|
|
9426
|
+
}
|
|
9427
|
+
/**
|
|
9428
|
+
* ReleasePipelinePayload model
|
|
9429
|
+
*
|
|
9430
|
+
* @param request - function to call the graphql client
|
|
9431
|
+
* @param data - L.ReleasePipelinePayloadFragment response data
|
|
9432
|
+
*/
|
|
9433
|
+
export declare class ReleasePipelinePayload extends Request {
|
|
9434
|
+
constructor(request: LinearRequest, data: L.ReleasePipelinePayloadFragment);
|
|
9435
|
+
/** The identifier of the last sync operation. */
|
|
9436
|
+
lastSyncId: number;
|
|
9437
|
+
/** Whether the operation was successful. */
|
|
9438
|
+
success: boolean;
|
|
9439
|
+
}
|
|
9440
|
+
/**
|
|
9441
|
+
* A generic payload return from entity archive mutations.
|
|
9442
|
+
*
|
|
9443
|
+
* @param request - function to call the graphql client
|
|
9444
|
+
* @param data - L.ReleaseStageArchivePayloadFragment response data
|
|
9445
|
+
*/
|
|
9446
|
+
export declare class ReleaseStageArchivePayload extends Request {
|
|
9447
|
+
constructor(request: LinearRequest, data: L.ReleaseStageArchivePayloadFragment);
|
|
9448
|
+
/** The identifier of the last sync operation. */
|
|
9449
|
+
lastSyncId: number;
|
|
9450
|
+
/** Whether the operation was successful. */
|
|
9451
|
+
success: boolean;
|
|
9452
|
+
}
|
|
9453
|
+
/**
|
|
9454
|
+
* ReleaseStagePayload model
|
|
9455
|
+
*
|
|
9456
|
+
* @param request - function to call the graphql client
|
|
9457
|
+
* @param data - L.ReleaseStagePayloadFragment response data
|
|
9458
|
+
*/
|
|
9459
|
+
export declare class ReleaseStagePayload extends Request {
|
|
9460
|
+
constructor(request: LinearRequest, data: L.ReleaseStagePayloadFragment);
|
|
9461
|
+
/** The identifier of the last sync operation. */
|
|
9462
|
+
lastSyncId: number;
|
|
9463
|
+
/** Whether the operation was successful. */
|
|
9464
|
+
success: boolean;
|
|
9465
|
+
}
|
|
9388
9466
|
/**
|
|
9389
9467
|
* RepositorySuggestion model
|
|
9390
9468
|
*
|
|
@@ -23222,5 +23300,5 @@ export declare class LinearSdk extends Request {
|
|
|
23222
23300
|
*/
|
|
23223
23301
|
updateWorkflowState(id: string, input: L.WorkflowStateUpdateInput): LinearFetch<WorkflowStatePayload>;
|
|
23224
23302
|
}
|
|
23225
|
-
export { AgentActivitySignal, AgentActivityType, AgentSessionStatus, AgentSessionType, AuthenticationSessionType, ContextViewType, CustomerStatusType, CustomerVisibilityMode, CyclePeriod, DateResolutionType, Day, EmailIntakeAddressType, ExternalSyncService, FacetPageSource, FeedSummarySchedule, FrequencyResolutionType, GitAutomationStates, GitLinkKind, GithubOrgType, IdentityProviderType, InitiativeStatus, InitiativeTab, InitiativeUpdateHealthType, IntegrationService, IssueRelationType, IssueSuggestionState, IssueSuggestionType, NotificationCategory, NotificationChannel, OAuthClientApprovalStatus, OrganizationDomainAuthType, OrganizationInviteStatus, OtherNotificationType, PaginationNulls, PaginationOrderBy, PaginationSortOrder, PostType, ProductIntelligenceScope, ProjectMilestoneStatus, ProjectStatusType, ProjectTab, ProjectUpdateHealthType, ProjectUpdateReminderFrequency, PullRequestMergeMethod, PullRequestReviewTool, PullRequestStatus, PushSubscriptionType, ReleaseChannel, SLADayCountType, SemanticSearchResultType, SendStrategy, SlaStatus, SlackChannelType, TeamRoleType, TriageResponsibilityAction, UserContextViewType, UserFlagType, UserFlagUpdateOperation, UserRoleType, UserSettingsThemeDeviceType, UserSettingsThemeMode, UserSettingsThemePreset, ViewPreferencesType, ViewType, } from "./_generated_documents";
|
|
23303
|
+
export { AgentActivitySignal, AgentActivityType, AgentSessionStatus, AgentSessionType, AuthenticationSessionType, ContextViewType, CustomerStatusType, CustomerVisibilityMode, CyclePeriod, DateResolutionType, Day, EmailIntakeAddressType, ExternalSyncService, FacetPageSource, FeedSummarySchedule, FrequencyResolutionType, GitAutomationStates, GitLinkKind, GithubOrgType, IdentityProviderType, InitiativeStatus, InitiativeTab, InitiativeUpdateHealthType, IntegrationService, IssueRelationType, IssueSuggestionState, IssueSuggestionType, NotificationCategory, NotificationChannel, OAuthClientApprovalStatus, OrganizationDomainAuthType, OrganizationInviteStatus, OtherNotificationType, PaginationNulls, PaginationOrderBy, PaginationSortOrder, PostType, ProductIntelligenceScope, ProjectMilestoneStatus, ProjectStatusType, ProjectTab, ProjectUpdateHealthType, ProjectUpdateReminderFrequency, PullRequestMergeMethod, PullRequestReviewTool, PullRequestStatus, PushSubscriptionType, ReleaseChannel, ReleaseStageType, SLADayCountType, SemanticSearchResultType, SendStrategy, SlaStatus, SlackChannelType, TeamRoleType, TriageResponsibilityAction, UserContextViewType, UserFlagType, UserFlagUpdateOperation, UserRoleType, UserSettingsThemeDeviceType, UserSettingsThemeMode, UserSettingsThemePreset, ViewPreferencesType, ViewType, } from "./_generated_documents";
|
|
23226
23304
|
//# sourceMappingURL=_generated_sdk.d.ts.map
|