@parra/parra-js-sdk 0.3.322 → 0.3.324

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.
Files changed (2) hide show
  1. package/dist/ParraAPI.d.ts +11 -0
  2. package/package.json +1 -1
@@ -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 {
@@ -2285,6 +2295,7 @@ export interface UserSettingsView {
2285
2295
  description?: string | null;
2286
2296
  footer_label?: string | null;
2287
2297
  slug: string;
2298
+ managed?: boolean;
2288
2299
  groups: Array<UserSettingsGroup>;
2289
2300
  }
2290
2301
  export interface CreateSettingsGroupRequestBody {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.322",
3
+ "version": "0.3.324",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",