@parra/parra-js-sdk 0.3.287 → 0.3.290
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 +4 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -3300,13 +3300,14 @@ export interface GenerateMailTemplateVersionContentResponseBody {
|
|
|
3300
3300
|
export interface UpdatePolicyDocumentRequestBody {
|
|
3301
3301
|
title?: string | null;
|
|
3302
3302
|
url?: string | null;
|
|
3303
|
+
slug?: string | null;
|
|
3303
3304
|
}
|
|
3304
3305
|
export interface CreatePolicyDocumentRequestBody {
|
|
3305
3306
|
title?: string | null;
|
|
3306
3307
|
url?: string | null;
|
|
3308
|
+
slug?: string | null;
|
|
3307
3309
|
type: PolicyDocumentType;
|
|
3308
3310
|
self_hosted: boolean;
|
|
3309
|
-
slug?: string | null;
|
|
3310
3311
|
}
|
|
3311
3312
|
export declare enum PolicyDocumentStatus {
|
|
3312
3313
|
live = "live",
|
|
@@ -3349,6 +3350,7 @@ export interface PolicyDocument {
|
|
|
3349
3350
|
title: string | null;
|
|
3350
3351
|
self_hosted: boolean;
|
|
3351
3352
|
url: string;
|
|
3353
|
+
slug?: string | null;
|
|
3352
3354
|
tenant_id: string;
|
|
3353
3355
|
published_version?: PolicyDocumentVersion | null;
|
|
3354
3356
|
draft_version?: PolicyDocumentVersion | null;
|
|
@@ -3363,6 +3365,7 @@ export interface PolicyDocumentCollectionStub {
|
|
|
3363
3365
|
self_hosted: boolean;
|
|
3364
3366
|
title: string | null;
|
|
3365
3367
|
url: string;
|
|
3368
|
+
slug?: string | null;
|
|
3366
3369
|
published_version?: PolicyDocumentVersionStub | null;
|
|
3367
3370
|
draft_version?: PolicyDocumentVersionStub | null;
|
|
3368
3371
|
}
|