@parra/parra-js-sdk 0.3.157 → 0.3.159
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 +9 -1
- package/dist/ParraAPI.js +9 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1497,6 +1497,12 @@ export interface UpdateChannelRequestBody {
|
|
|
1497
1497
|
export interface CreateExternalDomainRequestBody {
|
|
1498
1498
|
domain: string;
|
|
1499
1499
|
}
|
|
1500
|
+
export declare enum DnsRecordStatus {
|
|
1501
|
+
active = "active",
|
|
1502
|
+
pending = "pending",
|
|
1503
|
+
error = "error",
|
|
1504
|
+
deleted = "deleted"
|
|
1505
|
+
}
|
|
1500
1506
|
export declare enum DnsRecordType {
|
|
1501
1507
|
a = "A",
|
|
1502
1508
|
cname = "CNAME",
|
|
@@ -1507,6 +1513,7 @@ export interface ExternalDomainDnsRecord {
|
|
|
1507
1513
|
created_at: string;
|
|
1508
1514
|
updated_at: string;
|
|
1509
1515
|
deleted_at?: string | null;
|
|
1516
|
+
status: DnsRecordStatus;
|
|
1510
1517
|
type: DnsRecordType;
|
|
1511
1518
|
value: string;
|
|
1512
1519
|
ttl?: number | null;
|
|
@@ -1522,7 +1529,8 @@ export declare enum DomainStatus {
|
|
|
1522
1529
|
setup = "setup",
|
|
1523
1530
|
pending = "pending",
|
|
1524
1531
|
error = "error",
|
|
1525
|
-
disabled = "disabled"
|
|
1532
|
+
disabled = "disabled",
|
|
1533
|
+
deleted = "deleted"
|
|
1526
1534
|
}
|
|
1527
1535
|
export interface ExternalDomainData {
|
|
1528
1536
|
status: DomainStatus;
|
package/dist/ParraAPI.js
CHANGED
|
@@ -11,7 +11,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
11
11
|
return __assign.apply(this, arguments);
|
|
12
12
|
};
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.PolicyDocumentVersionStatus = exports.PolicyDocumentStatus = exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.DomainType = exports.TenantOnboardingGoal = exports.ApplicationType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = exports.PasswordlessStrategy = exports.DomainStatus = exports.DnsRecordType = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = exports.IdentityType = exports.PolicyDocumentType = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = void 0;
|
|
14
|
+
exports.PolicyDocumentVersionStatus = exports.PolicyDocumentStatus = exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.DomainType = exports.TenantOnboardingGoal = exports.ApplicationType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = exports.PasswordlessStrategy = exports.DomainStatus = exports.DnsRecordType = exports.DnsRecordStatus = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = exports.IdentityType = exports.PolicyDocumentType = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = void 0;
|
|
15
15
|
var TicketType;
|
|
16
16
|
(function (TicketType) {
|
|
17
17
|
TicketType["bug"] = "bug";
|
|
@@ -187,6 +187,13 @@ var ApnsPushType;
|
|
|
187
187
|
ApnsPushType["voip"] = "voip";
|
|
188
188
|
ApnsPushType["mdm"] = "mdm";
|
|
189
189
|
})(ApnsPushType || (exports.ApnsPushType = ApnsPushType = {}));
|
|
190
|
+
var DnsRecordStatus;
|
|
191
|
+
(function (DnsRecordStatus) {
|
|
192
|
+
DnsRecordStatus["active"] = "active";
|
|
193
|
+
DnsRecordStatus["pending"] = "pending";
|
|
194
|
+
DnsRecordStatus["error"] = "error";
|
|
195
|
+
DnsRecordStatus["deleted"] = "deleted";
|
|
196
|
+
})(DnsRecordStatus || (exports.DnsRecordStatus = DnsRecordStatus = {}));
|
|
190
197
|
var DnsRecordType;
|
|
191
198
|
(function (DnsRecordType) {
|
|
192
199
|
DnsRecordType["a"] = "A";
|
|
@@ -199,6 +206,7 @@ var DomainStatus;
|
|
|
199
206
|
DomainStatus["pending"] = "pending";
|
|
200
207
|
DomainStatus["error"] = "error";
|
|
201
208
|
DomainStatus["disabled"] = "disabled";
|
|
209
|
+
DomainStatus["deleted"] = "deleted";
|
|
202
210
|
})(DomainStatus || (exports.DomainStatus = DomainStatus = {}));
|
|
203
211
|
var PasswordlessStrategy;
|
|
204
212
|
(function (PasswordlessStrategy) {
|