@parra/parra-js-sdk 0.3.276 → 0.3.278
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 +3 -1
- package/dist/ParraAPI.js +1 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -335,7 +335,8 @@ export interface AppAuthInfo {
|
|
|
335
335
|
export declare enum PolicyDocumentType {
|
|
336
336
|
terms = "terms",
|
|
337
337
|
privacy = "privacy",
|
|
338
|
-
cookie = "cookie"
|
|
338
|
+
cookie = "cookie",
|
|
339
|
+
other = "other"
|
|
339
340
|
}
|
|
340
341
|
export interface PolicyDocumentLinkStub {
|
|
341
342
|
id: string;
|
|
@@ -3274,6 +3275,7 @@ export interface CreatePolicyDocumentRequestBody {
|
|
|
3274
3275
|
url?: string | null;
|
|
3275
3276
|
type: PolicyDocumentType;
|
|
3276
3277
|
self_hosted: boolean;
|
|
3278
|
+
slug?: string | null;
|
|
3277
3279
|
}
|
|
3278
3280
|
export declare enum PolicyDocumentStatus {
|
|
3279
3281
|
live = "live",
|
package/dist/ParraAPI.js
CHANGED
|
@@ -84,6 +84,7 @@ var PolicyDocumentType;
|
|
|
84
84
|
PolicyDocumentType["terms"] = "terms";
|
|
85
85
|
PolicyDocumentType["privacy"] = "privacy";
|
|
86
86
|
PolicyDocumentType["cookie"] = "cookie";
|
|
87
|
+
PolicyDocumentType["other"] = "other";
|
|
87
88
|
})(PolicyDocumentType || (exports.PolicyDocumentType = PolicyDocumentType = {}));
|
|
88
89
|
var IdentityType;
|
|
89
90
|
(function (IdentityType) {
|