merchi_sdk_ts 1.0.10 → 1.0.12
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/entities/domain.js +20 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/entities/domain.ts +15 -0
- package/src/index.ts +2 -2
package/dist/entities/domain.js
CHANGED
|
@@ -85,6 +85,26 @@ var Domain = /** @class */ (function (_super) {
|
|
|
85
85
|
Domain.property(),
|
|
86
86
|
__metadata("design:type", Boolean)
|
|
87
87
|
], Domain.prototype, "isMaster", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
Domain.property(),
|
|
90
|
+
__metadata("design:type", Boolean)
|
|
91
|
+
], Domain.prototype, "deploymentOnline", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
Domain.property(),
|
|
94
|
+
__metadata("design:type", Boolean)
|
|
95
|
+
], Domain.prototype, "deploymentInProgress", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
Domain.property(),
|
|
98
|
+
__metadata("design:type", Boolean)
|
|
99
|
+
], Domain.prototype, "deploymentSucceeded", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
Domain.property(),
|
|
102
|
+
__metadata("design:type", String)
|
|
103
|
+
], Domain.prototype, "deploymentMessage", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
Domain.property(),
|
|
106
|
+
__metadata("design:type", String)
|
|
107
|
+
], Domain.prototype, "deploymentKey", void 0);
|
|
88
108
|
__decorate([
|
|
89
109
|
Domain.property(),
|
|
90
110
|
__metadata("design:type", String)
|
package/dist/index.js
CHANGED
|
@@ -70,8 +70,8 @@ import { VariationOption } from './entities/variation_option.js';
|
|
|
70
70
|
import { VariationsGroup } from './entities/variations_group.js';
|
|
71
71
|
import { generateUUID } from './uuid.js';
|
|
72
72
|
import { getCookie } from './cookie.js';
|
|
73
|
-
import * as
|
|
73
|
+
import * as constants from './constants/index.js';
|
|
74
74
|
import * as request from './request.js';
|
|
75
75
|
import * as util from './util/index.js';
|
|
76
76
|
import { toastNotifications } from './toasts.js';
|
|
77
|
-
export {
|
|
77
|
+
export { constants, request, util, toastNotifications, Address, Assignment, AutomaticPaymentRelationship, Backup, Bank, Cart, CartItem, CartShipmentGroup, CartShipmentQuote, Category, Company, CompanyInvitation, Component, ComponentTag, ComponentVersion, CountryTax, Discount, DiscountGroup, Domain, DomainInvitation, DomainTag, Draft, DraftComment, DraftTemplate, EmailAddress, EmailCounter, EnrolledDomain, Entity, ExchangeRate, InternalTag, Inventory, InventoryUnitVariation, Invoice, Item, Job, JobComment, MatchingInventory, Menu, MenuItem, Merchi, MerchiFile, Notification, Page, Payment, PaymentDevice, PhoneNumber, Product, ProductionComment, Quote, QuoteItem, apiFetch, apiFetchWithProgress, Session, Shipment, ShipmentItem, ShipmentItemFulfillment, ShipmentMethod, ShipmentMethodVariation, ShortUrl, SubscriptionPlan, SupplyDomain, SystemRole, Theme, ThemeCssSetting, User, UserCompany, Variation, VariationField, VariationFieldsOption, VariationOption, VariationsGroup, generateUUID, getCookie };
|
package/package.json
CHANGED
package/src/entities/domain.ts
CHANGED
|
@@ -48,6 +48,21 @@ export class Domain extends Entity {
|
|
|
48
48
|
@Domain.property()
|
|
49
49
|
public isMaster?: boolean;
|
|
50
50
|
|
|
51
|
+
@Domain.property()
|
|
52
|
+
public deploymentOnline?: boolean;
|
|
53
|
+
|
|
54
|
+
@Domain.property()
|
|
55
|
+
public deploymentInProgress?: boolean;
|
|
56
|
+
|
|
57
|
+
@Domain.property()
|
|
58
|
+
public deploymentSucceeded?: boolean;
|
|
59
|
+
|
|
60
|
+
@Domain.property()
|
|
61
|
+
public deploymentMessage?: string;
|
|
62
|
+
|
|
63
|
+
@Domain.property()
|
|
64
|
+
public deploymentKey?: string;
|
|
65
|
+
|
|
51
66
|
@Domain.property()
|
|
52
67
|
public internalUseNotes?: string;
|
|
53
68
|
|
package/src/index.ts
CHANGED
|
@@ -70,13 +70,13 @@ import { VariationOption } from './entities/variation_option.js';
|
|
|
70
70
|
import { VariationsGroup } from './entities/variations_group.js';
|
|
71
71
|
import { generateUUID } from './uuid.js';
|
|
72
72
|
import { getCookie } from './cookie.js';
|
|
73
|
-
import * as
|
|
73
|
+
import * as constants from './constants/index.js';
|
|
74
74
|
import * as request from './request.js';
|
|
75
75
|
import * as util from './util/index.js';
|
|
76
76
|
import { toastNotifications } from './toasts.js';
|
|
77
77
|
|
|
78
78
|
export {
|
|
79
|
-
|
|
79
|
+
constants,
|
|
80
80
|
request,
|
|
81
81
|
util,
|
|
82
82
|
toastNotifications,
|