@parra/parra-js-sdk 0.3.322 → 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 +10 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -789,6 +789,7 @@ export interface CreateCreatorAttachmentAttachmentRequestBody {
|
|
|
789
789
|
}
|
|
790
790
|
export interface CreateCreatorUpdateRequestBody {
|
|
791
791
|
publish?: boolean | null;
|
|
792
|
+
template_id?: string | null;
|
|
792
793
|
title: string;
|
|
793
794
|
body?: string;
|
|
794
795
|
attachments?: Array<CreateCreatorAttachmentAttachmentRequestBody>;
|
|
@@ -1958,10 +1959,17 @@ export interface ReadInboxItemsRequestBody {
|
|
|
1958
1959
|
export interface UpdateNotificationTemplateRequestBody {
|
|
1959
1960
|
name: string;
|
|
1960
1961
|
description?: string | null;
|
|
1962
|
+
topic_id?: string | null;
|
|
1961
1963
|
}
|
|
1962
1964
|
export interface CreateNotificationTemplateRequestBody {
|
|
1963
1965
|
name: string;
|
|
1964
1966
|
description?: string | null;
|
|
1967
|
+
topic_id?: string | null;
|
|
1968
|
+
}
|
|
1969
|
+
export interface NotificationTopicStub {
|
|
1970
|
+
id: string;
|
|
1971
|
+
name: string;
|
|
1972
|
+
slug: string;
|
|
1965
1973
|
}
|
|
1966
1974
|
export declare enum ChannelType {
|
|
1967
1975
|
apns = "apns",
|
|
@@ -2033,7 +2041,9 @@ export interface NotificationTemplate {
|
|
|
2033
2041
|
deleted_at?: string | null;
|
|
2034
2042
|
name: string;
|
|
2035
2043
|
description?: string | null;
|
|
2044
|
+
topic_id?: string | null;
|
|
2036
2045
|
tenant_id: string;
|
|
2046
|
+
topic?: NotificationTopicStub | null;
|
|
2037
2047
|
channels?: Array<Channel> | null;
|
|
2038
2048
|
}
|
|
2039
2049
|
export interface NotificationTemplateCollectionResponse {
|