@parra/parra-js-sdk 0.3.295 → 0.3.297
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/ParraAPI.d.ts +8 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -191,6 +191,8 @@ export interface ApplicationIosConfig {
|
|
|
191
191
|
app_id?: string | null;
|
|
192
192
|
team_id?: string | null;
|
|
193
193
|
bundle_id: string;
|
|
194
|
+
app_store_connect_app_id?: string | null;
|
|
195
|
+
app_store_connect_linked_at?: string | null;
|
|
194
196
|
}
|
|
195
197
|
export interface IosApplicationAppInfoStub {
|
|
196
198
|
id: string;
|
|
@@ -200,6 +202,8 @@ export interface IosApplicationAppInfoStub {
|
|
|
200
202
|
app_id?: string | null;
|
|
201
203
|
team_id?: string | null;
|
|
202
204
|
bundle_id: string;
|
|
205
|
+
app_store_connect_app_id?: string | null;
|
|
206
|
+
app_store_connect_linked_at?: string | null;
|
|
203
207
|
name: string;
|
|
204
208
|
description?: string | null;
|
|
205
209
|
type: ApplicationType;
|
|
@@ -213,6 +217,8 @@ export interface ApplicationAppInfoStub {
|
|
|
213
217
|
app_id?: string | null;
|
|
214
218
|
team_id?: string | null;
|
|
215
219
|
bundle_id: string;
|
|
220
|
+
app_store_connect_app_id?: string | null;
|
|
221
|
+
app_store_connect_linked_at?: string | null;
|
|
216
222
|
name: string;
|
|
217
223
|
description?: string | null;
|
|
218
224
|
type: ApplicationType;
|
|
@@ -1675,7 +1681,7 @@ export interface Assignment {
|
|
|
1675
1681
|
deleted_at?: string | null;
|
|
1676
1682
|
team_member: TeamMemberStub;
|
|
1677
1683
|
}
|
|
1678
|
-
export interface
|
|
1684
|
+
export interface UpdateTicketLinkRequestBody {
|
|
1679
1685
|
title?: string | null;
|
|
1680
1686
|
url: string;
|
|
1681
1687
|
description?: string | null;
|
|
@@ -3613,7 +3619,7 @@ declare class ParraAPI {
|
|
|
3613
3619
|
updateTicketAssignmentById: (tenant_id: string, ticket_id: string, ticket_assignment_id: string, body: UpdateTicketAssignmentRequestBody, options?: Options) => Promise<Assignment>;
|
|
3614
3620
|
deleteTicketAssignmentById: (tenant_id: string, ticket_id: string, ticket_assignment_id: string, options?: Options) => Promise<Response>;
|
|
3615
3621
|
deleteAttachmentForTicketById: (tenant_id: string, ticket_id: string, ticket_attachment_id: string, options?: Options) => Promise<Response>;
|
|
3616
|
-
updateTicketLinkById: (tenant_id: string, ticket_id: string, ticket_link_id: string, body:
|
|
3622
|
+
updateTicketLinkById: (tenant_id: string, ticket_id: string, ticket_link_id: string, body: UpdateTicketLinkRequestBody, options?: Options) => Promise<TicketLink>;
|
|
3617
3623
|
deleteTicketLink: (tenant_id: string, ticket_id: string, ticket_link_id: string, options?: Options) => Promise<Response>;
|
|
3618
3624
|
createLinkForTicket: (tenant_id: string, ticket_id: string, body?: CreateTicketLinkRequestBody, options?: Options) => Promise<TicketLink>;
|
|
3619
3625
|
createTicketChecklistItem: (tenant_id: string, ticket_id: string, body?: CreateTicketChecklistItemRequestBody, options?: Options) => Promise<TicketChecklistItem>;
|