@parra/parra-js-sdk 0.3.286 → 0.3.289

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.
@@ -655,6 +655,7 @@ export interface FeedbackFormField {
655
655
  helper_text?: string | null;
656
656
  type: FeedbackFormFieldType;
657
657
  required: boolean;
658
+ hidden?: boolean;
658
659
  data: FeedbackFormFieldData;
659
660
  }
660
661
  export interface FeedbackFormData {
@@ -3299,13 +3300,14 @@ export interface GenerateMailTemplateVersionContentResponseBody {
3299
3300
  export interface UpdatePolicyDocumentRequestBody {
3300
3301
  title?: string | null;
3301
3302
  url?: string | null;
3303
+ slug?: string | null;
3302
3304
  }
3303
3305
  export interface CreatePolicyDocumentRequestBody {
3304
3306
  title?: string | null;
3305
3307
  url?: string | null;
3308
+ slug?: string | null;
3306
3309
  type: PolicyDocumentType;
3307
3310
  self_hosted: boolean;
3308
- slug?: string | null;
3309
3311
  }
3310
3312
  export declare enum PolicyDocumentStatus {
3311
3313
  live = "live",
@@ -3348,6 +3350,7 @@ export interface PolicyDocument {
3348
3350
  title: string | null;
3349
3351
  self_hosted: boolean;
3350
3352
  url: string;
3353
+ slug?: string | null;
3351
3354
  tenant_id: string;
3352
3355
  published_version?: PolicyDocumentVersion | null;
3353
3356
  draft_version?: PolicyDocumentVersion | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.286",
3
+ "version": "0.3.289",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",