@parra/parra-js-sdk 0.3.321 → 0.3.323
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 +15 -12
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export interface ImageAssetStub {
|
|
|
42
42
|
id: string;
|
|
43
43
|
size: Size;
|
|
44
44
|
url: string;
|
|
45
|
+
blur_hash?: string | null;
|
|
45
46
|
}
|
|
46
47
|
export interface TicketFeatured {
|
|
47
48
|
title: string;
|
|
@@ -109,6 +110,7 @@ export interface ReleaseHeader {
|
|
|
109
110
|
id: string;
|
|
110
111
|
size: Size;
|
|
111
112
|
url: string;
|
|
113
|
+
blur_hash?: string | null;
|
|
112
114
|
}
|
|
113
115
|
export declare enum ReleaseType {
|
|
114
116
|
major = "major",
|
|
@@ -532,6 +534,7 @@ export interface ImageAsset {
|
|
|
532
534
|
group: string;
|
|
533
535
|
file_type: string;
|
|
534
536
|
mime_type: string;
|
|
537
|
+
blur_hash?: string | null;
|
|
535
538
|
}
|
|
536
539
|
export interface CreateCheckoutSessionRequestBody {
|
|
537
540
|
plan_id: string;
|
|
@@ -782,9 +785,11 @@ export interface CreateCreatorAttachmentAttachmentRequestBody {
|
|
|
782
785
|
id: string;
|
|
783
786
|
size: Size;
|
|
784
787
|
url: string;
|
|
788
|
+
blur_hash?: string | null;
|
|
785
789
|
}
|
|
786
790
|
export interface CreateCreatorUpdateRequestBody {
|
|
787
791
|
publish?: boolean | null;
|
|
792
|
+
template_id?: string | null;
|
|
788
793
|
title: string;
|
|
789
794
|
body?: string;
|
|
790
795
|
attachments?: Array<CreateCreatorAttachmentAttachmentRequestBody>;
|
|
@@ -1553,6 +1558,7 @@ export interface CreateTicketAttachmentRequestBody {
|
|
|
1553
1558
|
id: string;
|
|
1554
1559
|
size: Size;
|
|
1555
1560
|
url: string;
|
|
1561
|
+
blur_hash?: string | null;
|
|
1556
1562
|
}
|
|
1557
1563
|
export interface UpdateTicketChecklistItemRequestBody {
|
|
1558
1564
|
title?: string;
|
|
@@ -1953,10 +1959,17 @@ export interface ReadInboxItemsRequestBody {
|
|
|
1953
1959
|
export interface UpdateNotificationTemplateRequestBody {
|
|
1954
1960
|
name: string;
|
|
1955
1961
|
description?: string | null;
|
|
1962
|
+
topic_id?: string | null;
|
|
1956
1963
|
}
|
|
1957
1964
|
export interface CreateNotificationTemplateRequestBody {
|
|
1958
1965
|
name: string;
|
|
1959
1966
|
description?: string | null;
|
|
1967
|
+
topic_id?: string | null;
|
|
1968
|
+
}
|
|
1969
|
+
export interface NotificationTopicStub {
|
|
1970
|
+
id: string;
|
|
1971
|
+
name: string;
|
|
1972
|
+
slug: string;
|
|
1960
1973
|
}
|
|
1961
1974
|
export declare enum ChannelType {
|
|
1962
1975
|
apns = "apns",
|
|
@@ -2028,7 +2041,9 @@ export interface NotificationTemplate {
|
|
|
2028
2041
|
deleted_at?: string | null;
|
|
2029
2042
|
name: string;
|
|
2030
2043
|
description?: string | null;
|
|
2044
|
+
topic_id?: string | null;
|
|
2031
2045
|
tenant_id: string;
|
|
2046
|
+
topic?: NotificationTopicStub | null;
|
|
2032
2047
|
channels?: Array<Channel> | null;
|
|
2033
2048
|
}
|
|
2034
2049
|
export interface NotificationTemplateCollectionResponse {
|
|
@@ -2250,10 +2265,7 @@ export interface UserSettingsItem {
|
|
|
2250
2265
|
view_id: string;
|
|
2251
2266
|
title: string;
|
|
2252
2267
|
description?: string | null;
|
|
2253
|
-
display_title: string;
|
|
2254
|
-
display_description?: string | null;
|
|
2255
2268
|
slug: string;
|
|
2256
|
-
transport_type?: string | null;
|
|
2257
2269
|
key: string;
|
|
2258
2270
|
type: SettingsItemType;
|
|
2259
2271
|
required: boolean;
|
|
@@ -2267,14 +2279,10 @@ export interface UserSettingsGroup {
|
|
|
2267
2279
|
deleted_at?: string | null;
|
|
2268
2280
|
tenant_id?: string;
|
|
2269
2281
|
view_id: string;
|
|
2270
|
-
notification_topic_id?: string | null;
|
|
2271
2282
|
title: string;
|
|
2272
2283
|
description?: string | null;
|
|
2273
|
-
display_title: string;
|
|
2274
|
-
display_description?: string | null;
|
|
2275
2284
|
slug: string;
|
|
2276
2285
|
key: string;
|
|
2277
|
-
notification_topic?: NotificationTopic | null;
|
|
2278
2286
|
items: Array<UserSettingsItem>;
|
|
2279
2287
|
}
|
|
2280
2288
|
export interface UserSettingsView {
|
|
@@ -2285,13 +2293,8 @@ export interface UserSettingsView {
|
|
|
2285
2293
|
tenant_id: string;
|
|
2286
2294
|
title: string;
|
|
2287
2295
|
description?: string | null;
|
|
2288
|
-
display_title: string;
|
|
2289
|
-
display_description?: string | null;
|
|
2290
2296
|
footer_label?: string | null;
|
|
2291
2297
|
slug: string;
|
|
2292
|
-
type?: string | null;
|
|
2293
|
-
managed: boolean;
|
|
2294
|
-
active: boolean;
|
|
2295
2298
|
groups: Array<UserSettingsGroup>;
|
|
2296
2299
|
}
|
|
2297
2300
|
export interface CreateSettingsGroupRequestBody {
|