@retaila/shared-types 1.1.119 → 1.1.120
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/index.d.mts +159 -1
- package/dist/index.d.ts +159 -1
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -965,6 +965,33 @@ var InternalNotificationType = /* @__PURE__ */ ((InternalNotificationType2) => {
|
|
|
965
965
|
InternalNotificationType2["CONTACT_FORM_SUBMITTED"] = "CONTACT_FORM_SUBMITTED";
|
|
966
966
|
return InternalNotificationType2;
|
|
967
967
|
})(InternalNotificationType || {});
|
|
968
|
+
|
|
969
|
+
// src/serviceBilling/types.ts
|
|
970
|
+
var BillingInterval = /* @__PURE__ */ ((BillingInterval2) => {
|
|
971
|
+
BillingInterval2["MONTHLY"] = "MONTHLY";
|
|
972
|
+
BillingInterval2["SEMIANNUAL"] = "SEMIANNUAL";
|
|
973
|
+
BillingInterval2["ANNUAL"] = "ANNUAL";
|
|
974
|
+
return BillingInterval2;
|
|
975
|
+
})(BillingInterval || {});
|
|
976
|
+
var AccountServicePlanStatus = /* @__PURE__ */ ((AccountServicePlanStatus2) => {
|
|
977
|
+
AccountServicePlanStatus2["ACTIVE"] = "ACTIVE";
|
|
978
|
+
AccountServicePlanStatus2["ENDED"] = "ENDED";
|
|
979
|
+
AccountServicePlanStatus2["CANCELLED"] = "CANCELLED";
|
|
980
|
+
return AccountServicePlanStatus2;
|
|
981
|
+
})(AccountServicePlanStatus || {});
|
|
982
|
+
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
983
|
+
ChargeType2["SUBSCRIPTION"] = "SUBSCRIPTION";
|
|
984
|
+
ChargeType2["INSTALLATION"] = "INSTALLATION";
|
|
985
|
+
ChargeType2["ADJUSTMENT"] = "ADJUSTMENT";
|
|
986
|
+
ChargeType2["OTHER"] = "OTHER";
|
|
987
|
+
return ChargeType2;
|
|
988
|
+
})(ChargeType || {});
|
|
989
|
+
var ChargeStatus = /* @__PURE__ */ ((ChargeStatus2) => {
|
|
990
|
+
ChargeStatus2["PENDING"] = "PENDING";
|
|
991
|
+
ChargeStatus2["PAID"] = "PAID";
|
|
992
|
+
ChargeStatus2["CANCELLED"] = "CANCELLED";
|
|
993
|
+
return ChargeStatus2;
|
|
994
|
+
})(ChargeStatus || {});
|
|
968
995
|
export {
|
|
969
996
|
AccountBranchScheduleDay,
|
|
970
997
|
AccountBranchScheduleStatus,
|
|
@@ -978,11 +1005,13 @@ export {
|
|
|
978
1005
|
AccountIntegrationEnvironment,
|
|
979
1006
|
AccountIntegrationStatus,
|
|
980
1007
|
AccountPaymentMethodStatus,
|
|
1008
|
+
AccountServicePlanStatus,
|
|
981
1009
|
AccountStatus,
|
|
982
1010
|
AiCreditSource,
|
|
983
1011
|
AiCreditTransactionReason,
|
|
984
1012
|
AiCreditType,
|
|
985
1013
|
AnalyticsEventType,
|
|
1014
|
+
BillingInterval,
|
|
986
1015
|
COUNTRY_DEFAULTS,
|
|
987
1016
|
CampaignBudgetType,
|
|
988
1017
|
CampaignStatus,
|
|
@@ -990,6 +1019,8 @@ export {
|
|
|
990
1019
|
CartItemErrorCode,
|
|
991
1020
|
CartSource,
|
|
992
1021
|
CartStatus,
|
|
1022
|
+
ChargeStatus,
|
|
1023
|
+
ChargeType,
|
|
993
1024
|
CollectionRuleField,
|
|
994
1025
|
CollectionRuleFieldLabels,
|
|
995
1026
|
CollectionRuleOperator,
|