@wix/auto_sdk_packages_packages 1.0.28 → 1.0.30

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +27 -2
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +34 -3
  5. package/build/cjs/index.typings.js +27 -2
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +29 -3
  8. package/build/cjs/meta.js +27 -2
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +26 -2
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +34 -3
  14. package/build/es/index.typings.mjs +26 -2
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +29 -3
  17. package/build/es/meta.mjs +26 -2
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +27 -2
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +75 -3
  23. package/build/internal/cjs/index.typings.js +27 -2
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +98 -3
  26. package/build/internal/cjs/meta.js +27 -2
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +26 -2
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +75 -3
  32. package/build/internal/es/index.typings.mjs +26 -2
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +98 -3
  35. package/build/internal/es/meta.mjs +26 -2
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -305,6 +305,11 @@ interface Sorting {
305
305
  fieldName?: string;
306
306
  /** Sort order. */
307
307
  order?: SortOrderWithLiterals;
308
+ /**
309
+ * Origin point for geo-distance sorting on a GEO field
310
+ * results are ordered by distance from this point (ASC = nearest first, DESC = farthest first).
311
+ */
312
+ origin?: AddressLocation;
308
313
  }
309
314
  declare enum SortOrder {
310
315
  ASC = "ASC",
@@ -312,6 +317,12 @@ declare enum SortOrder {
312
317
  }
313
318
  /** @enumType */
314
319
  type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
320
+ interface AddressLocation {
321
+ /** Address latitude. */
322
+ latitude?: number | null;
323
+ /** Address longitude. */
324
+ longitude?: number | null;
325
+ }
315
326
  interface Paging {
316
327
  /** Number of items to load. */
317
328
  limit?: number | null;
@@ -1112,10 +1123,11 @@ declare enum ContractSwitchType {
1112
1123
  PENDING_CHANGES = "PENDING_CHANGES",
1113
1124
  DOWNGRADE_RENEWAL = "DOWNGRADE_RENEWAL",
1114
1125
  FIXED_BILLING_DATE_PRORATION = "FIXED_BILLING_DATE_PRORATION",
1115
- IMMEDIATE_SWITCH = "IMMEDIATE_SWITCH"
1126
+ IMMEDIATE_SWITCH = "IMMEDIATE_SWITCH",
1127
+ FLAT_PRICE_DIFFERENCE = "FLAT_PRICE_DIFFERENCE"
1116
1128
  }
1117
1129
  /** @enumType */
1118
- type ContractSwitchTypeWithLiterals = ContractSwitchType | 'NOT_APPLICABLE' | 'ADDITIONAL_QUANTITY' | 'CREDIT_UNUSED_PERIOD' | 'REFUND_PRICE_DIFF' | 'ADJUST_PERIOD_END' | 'DOWNGRADE_GRACE_PERIOD' | 'FULL_AMOUNT_PERIOD' | 'END_OF_PERIOD' | 'PENDING_CHANGES' | 'DOWNGRADE_RENEWAL' | 'FIXED_BILLING_DATE_PRORATION' | 'IMMEDIATE_SWITCH';
1130
+ type ContractSwitchTypeWithLiterals = ContractSwitchType | 'NOT_APPLICABLE' | 'ADDITIONAL_QUANTITY' | 'CREDIT_UNUSED_PERIOD' | 'REFUND_PRICE_DIFF' | 'ADJUST_PERIOD_END' | 'DOWNGRADE_GRACE_PERIOD' | 'FULL_AMOUNT_PERIOD' | 'END_OF_PERIOD' | 'PENDING_CHANGES' | 'DOWNGRADE_RENEWAL' | 'FIXED_BILLING_DATE_PRORATION' | 'IMMEDIATE_SWITCH' | 'FLAT_PRICE_DIFFERENCE';
1119
1131
  declare enum ContractSwitchReason {
1120
1132
  EXTERNAL_PROVIDER_TRIGGER = "EXTERNAL_PROVIDER_TRIGGER",
1121
1133
  PRICE_INCREASE = "PRICE_INCREASE"
@@ -1175,7 +1187,21 @@ interface SubscriptionPendingChange {
1175
1187
  interface RecurringChargeAttemptFailed {
1176
1188
  /** Subscription for which the recurring charge attempt has failed. */
1177
1189
  subscription?: Subscription;
1190
+ /** Reason the recurring charge attempt failed or could not be made. */
1191
+ reason?: RecurringChargeFailureReasonWithLiterals;
1192
+ /**
1193
+ * ID of the invoice associated with the recurring charge failure.
1194
+ * @maxLength 36
1195
+ */
1196
+ invoiceId?: string | null;
1178
1197
  }
1198
+ declare enum RecurringChargeFailureReason {
1199
+ CHARGE_FAILURE = "CHARGE_FAILURE",
1200
+ CREDIT_CARD_EXPIRED = "CREDIT_CARD_EXPIRED",
1201
+ NO_ACTIVE_BILLING_ACCOUNT = "NO_ACTIVE_BILLING_ACCOUNT"
1202
+ }
1203
+ /** @enumType */
1204
+ type RecurringChargeFailureReasonWithLiterals = RecurringChargeFailureReason | 'CHARGE_FAILURE' | 'CREDIT_CARD_EXPIRED' | 'NO_ACTIVE_BILLING_ACCOUNT';
1179
1205
  /** Triggered when a subscription is updated. */
1180
1206
  interface SubscriptionUpdated {
1181
1207
  /** Updated subscription. */
@@ -1822,6 +1848,11 @@ type PackageQuery = {
1822
1848
  Sort order.
1823
1849
  */
1824
1850
  order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
1851
+ /**
1852
+ Origin point for geo-distance sorting on a GEO field
1853
+ results are ordered by distance from this point (ASC = nearest first, DESC = farthest first).
1854
+ */
1855
+ origin?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['origin'];
1825
1856
  }[];
1826
1857
  };
1827
1858
  declare const utils: {
@@ -2025,4 +2056,4 @@ interface UpdatePackageExternalIdIdentifiers {
2025
2056
  externalId: string;
2026
2057
  }
2027
2058
 
2028
- export { type AccountInfo, type ActionEvent, type AdjustProductInstanceSpecificationsOptions, type AdjustProductInstanceSpecificationsRequest, type AdjustProductInstanceSpecificationsResponse, type AdjustedProductInstanceSpecifications, type AssignProductInstanceToSiteIdentifiers, type AssignProductInstanceToSiteOptions, type AssignProductInstanceToSiteRequest, type AssignProductInstanceToSiteResponse, type AssignedProductInstanceToSite, type BillingReference, type CancelPackageOptions, type CancelPackageRequest, type CancelPackageResponse, type CancelProductInstanceOptions, type CancelProductInstanceRequest, type CancelProductInstanceResponse, type CancellationDetails, type CommonQueryWithEntityContext, ContractSwitchReason, type ContractSwitchReasonWithLiterals, ContractSwitchType, type ContractSwitchTypeWithLiterals, type ContractSwitched, type CountPackagesRequest, type CountPackagesResponse, type CreatePackageOptions, type CreatePackageRequest, type CreatePackageResponse, type CreatePackageV2Options, type CursorPaging, type Cursors, type Cycle, type CycleCycleSelectorOneOf, CycleDescriptorType, type CycleDescriptorTypeWithLiterals, type CycleInterval, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type FailureReason, FailureReasonCode, type FailureReasonCodeWithLiterals, type FailureReportRequest, FieldToUpdate, type FieldToUpdateWithLiterals, type FixBrokenMigrationRequest, type FixBrokenMigrationResponse, type GetPackageRequest, type GetPackageResponse, type IdentificationData, type IdentificationDataIdOneOf, Initiator, type InitiatorWithLiterals, type Interval, IntervalIntervalUnit, type IntervalIntervalUnitWithLiterals, IntervalUnit, type IntervalUnitWithLiterals, type MessageEnvelope, type MigrateSubscriptionToPackagesRequest, type MigrateSubscriptionToPackagesResponse, type OneTime, type Package, type PackageCanceled, type PackageQuery, type PackageQuerySpec, type PackagesQueryBuilder, type PackagesQueryResult, type Paging, type PagingMetadataV2, PriceIncreaseTrigger, type PriceIncreaseTriggerWithLiterals, ProductAdjustment, type ProductAdjustmentWithLiterals, type ProductInstance, type ProductInstanceCanceled, type ProductInstanceContractDetailsOneOf, type ProductInstanceCycle, type ProductInstanceFailed, type ProductInstanceUpdated, type ProductPriceIncreaseData, ProviderName, type ProviderNameWithLiterals, type QueryPackagesRequest, type QueryPackagesResponse, type QueryV2, type QueryV2PagingMethodOneOf, type ReactivationData, ReactivationReasonEnum, type ReactivationReasonEnumWithLiterals, type RecurringChargeAttemptFailed, type RecurringChargeSucceeded, RefundType, type RefundTypeWithLiterals, type RestoreInfo, SortOrder, type SortOrderWithLiterals, type Sorting, Status, type StatusWithLiterals, type Subscription, type SubscriptionAssigned, type SubscriptionAutoRenewTurnedOff, type SubscriptionAutoRenewTurnedOn, type SubscriptionCancelled, type SubscriptionCreated, type SubscriptionEvent, type SubscriptionEventEventOneOf, type SubscriptionMigratedFromVista, type SubscriptionNearEndOfPeriod, type SubscriptionPendingChange, SubscriptionStatus, type SubscriptionStatusWithLiterals, type SubscriptionTransferred, type SubscriptionUnassigned, type SubscriptionUpdated, type SubscriptionVistaMigrationReverted, type UnassignProductInstanceFromSiteOptions, type UnassignProductInstanceFromSiteRequest, type UnassignProductInstanceFromSiteResponse, UnassignReason, type UnassignReasonWithLiterals, type UnassignedProductInstanceFromSite, type UpdatePackageExternalIdIdentifiers, type UpdatePackageExternalIdRequest, type UpdatePackageExternalIdResponse, type UpdateProductInstanceRequest, type UpdateProductInstanceResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, adjustProductInstanceSpecifications, assignProductInstanceToSite, cancelPackage, cancelProductInstance, createPackage, createPackageV2, getPackage, queryPackages, typedQueryPackages, unassignProductInstanceFromSite, updatePackageExternalId, utils };
2059
+ export { type AccountInfo, type ActionEvent, type AddressLocation, type AdjustProductInstanceSpecificationsOptions, type AdjustProductInstanceSpecificationsRequest, type AdjustProductInstanceSpecificationsResponse, type AdjustedProductInstanceSpecifications, type AssignProductInstanceToSiteIdentifiers, type AssignProductInstanceToSiteOptions, type AssignProductInstanceToSiteRequest, type AssignProductInstanceToSiteResponse, type AssignedProductInstanceToSite, type BillingReference, type CancelPackageOptions, type CancelPackageRequest, type CancelPackageResponse, type CancelProductInstanceOptions, type CancelProductInstanceRequest, type CancelProductInstanceResponse, type CancellationDetails, type CommonQueryWithEntityContext, ContractSwitchReason, type ContractSwitchReasonWithLiterals, ContractSwitchType, type ContractSwitchTypeWithLiterals, type ContractSwitched, type CountPackagesRequest, type CountPackagesResponse, type CreatePackageOptions, type CreatePackageRequest, type CreatePackageResponse, type CreatePackageV2Options, type CursorPaging, type Cursors, type Cycle, type CycleCycleSelectorOneOf, CycleDescriptorType, type CycleDescriptorTypeWithLiterals, type CycleInterval, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type FailureReason, FailureReasonCode, type FailureReasonCodeWithLiterals, type FailureReportRequest, FieldToUpdate, type FieldToUpdateWithLiterals, type FixBrokenMigrationRequest, type FixBrokenMigrationResponse, type GetPackageRequest, type GetPackageResponse, type IdentificationData, type IdentificationDataIdOneOf, Initiator, type InitiatorWithLiterals, type Interval, IntervalIntervalUnit, type IntervalIntervalUnitWithLiterals, IntervalUnit, type IntervalUnitWithLiterals, type MessageEnvelope, type MigrateSubscriptionToPackagesRequest, type MigrateSubscriptionToPackagesResponse, type OneTime, type Package, type PackageCanceled, type PackageQuery, type PackageQuerySpec, type PackagesQueryBuilder, type PackagesQueryResult, type Paging, type PagingMetadataV2, PriceIncreaseTrigger, type PriceIncreaseTriggerWithLiterals, ProductAdjustment, type ProductAdjustmentWithLiterals, type ProductInstance, type ProductInstanceCanceled, type ProductInstanceContractDetailsOneOf, type ProductInstanceCycle, type ProductInstanceFailed, type ProductInstanceUpdated, type ProductPriceIncreaseData, ProviderName, type ProviderNameWithLiterals, type QueryPackagesRequest, type QueryPackagesResponse, type QueryV2, type QueryV2PagingMethodOneOf, type ReactivationData, ReactivationReasonEnum, type ReactivationReasonEnumWithLiterals, type RecurringChargeAttemptFailed, RecurringChargeFailureReason, type RecurringChargeFailureReasonWithLiterals, type RecurringChargeSucceeded, RefundType, type RefundTypeWithLiterals, type RestoreInfo, SortOrder, type SortOrderWithLiterals, type Sorting, Status, type StatusWithLiterals, type Subscription, type SubscriptionAssigned, type SubscriptionAutoRenewTurnedOff, type SubscriptionAutoRenewTurnedOn, type SubscriptionCancelled, type SubscriptionCreated, type SubscriptionEvent, type SubscriptionEventEventOneOf, type SubscriptionMigratedFromVista, type SubscriptionNearEndOfPeriod, type SubscriptionPendingChange, SubscriptionStatus, type SubscriptionStatusWithLiterals, type SubscriptionTransferred, type SubscriptionUnassigned, type SubscriptionUpdated, type SubscriptionVistaMigrationReverted, type UnassignProductInstanceFromSiteOptions, type UnassignProductInstanceFromSiteRequest, type UnassignProductInstanceFromSiteResponse, UnassignReason, type UnassignReasonWithLiterals, type UnassignedProductInstanceFromSite, type UpdatePackageExternalIdIdentifiers, type UpdatePackageExternalIdRequest, type UpdatePackageExternalIdResponse, type UpdateProductInstanceRequest, type UpdateProductInstanceResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, adjustProductInstanceSpecifications, assignProductInstanceToSite, cancelPackage, cancelProductInstance, createPackage, createPackageV2, getPackage, queryPackages, typedQueryPackages, unassignProductInstanceFromSite, updatePackageExternalId, utils };
@@ -8,6 +8,7 @@ import {
8
8
 
9
9
  // src/premium-reseller-v1-packages-packages.http.ts
10
10
  import { toURLSearchParams } from "@wix/sdk-runtime/rest-modules";
11
+ import { transformSDKFloatToRESTFloat } from "@wix/sdk-runtime/transformations/float";
11
12
  import { transformSDKTimestampToRESTTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
12
13
  import { transformRESTTimestampToSDKTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
13
14
  import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
@@ -23,6 +24,12 @@ function resolveComWixpressPremiumResellerPackagesV1PackagesUrl(opts) {
23
24
  srcPath: "/resellers/v2/packages",
24
25
  destPath: "/v2/packages"
25
26
  }
27
+ ],
28
+ "api._api_base_domain_": [
29
+ {
30
+ srcPath: "/premium-reseller-packages",
31
+ destPath: ""
32
+ }
26
33
  ]
27
34
  };
28
35
  return resolveUrl(Object.assign(opts, { domainToMappings }));
@@ -182,6 +189,15 @@ function getPackage(payload) {
182
189
  }
183
190
  function queryPackages(payload) {
184
191
  function __queryPackages({ host }) {
192
+ const serializedData = transformPaths(payload, [
193
+ {
194
+ transformFn: transformSDKFloatToRESTFloat,
195
+ paths: [
196
+ { path: "query.sort.origin.latitude" },
197
+ { path: "query.sort.origin.longitude" }
198
+ ]
199
+ }
200
+ ]);
185
201
  const metadata = {
186
202
  entityFqdn: "wix.premium.reseller.v1.packages",
187
203
  method: "POST",
@@ -192,10 +208,10 @@ function queryPackages(payload) {
192
208
  },
193
209
  url: resolveComWixpressPremiumResellerPackagesV1PackagesUrl({
194
210
  protoPath: "/v1/packages/query",
195
- data: payload,
211
+ data: serializedData,
196
212
  host
197
213
  }),
198
- data: payload,
214
+ data: serializedData,
199
215
  transformResponse: (payload2) => transformPaths(payload2, [
200
216
  {
201
217
  transformFn: transformRESTTimestampToSDKTimestamp,
@@ -477,6 +493,7 @@ var ContractSwitchType = /* @__PURE__ */ ((ContractSwitchType2) => {
477
493
  ContractSwitchType2["DOWNGRADE_RENEWAL"] = "DOWNGRADE_RENEWAL";
478
494
  ContractSwitchType2["FIXED_BILLING_DATE_PRORATION"] = "FIXED_BILLING_DATE_PRORATION";
479
495
  ContractSwitchType2["IMMEDIATE_SWITCH"] = "IMMEDIATE_SWITCH";
496
+ ContractSwitchType2["FLAT_PRICE_DIFFERENCE"] = "FLAT_PRICE_DIFFERENCE";
480
497
  return ContractSwitchType2;
481
498
  })(ContractSwitchType || {});
482
499
  var ContractSwitchReason = /* @__PURE__ */ ((ContractSwitchReason2) => {
@@ -495,6 +512,12 @@ var ProductAdjustment = /* @__PURE__ */ ((ProductAdjustment2) => {
495
512
  ProductAdjustment2["DOWNGRADE"] = "DOWNGRADE";
496
513
  return ProductAdjustment2;
497
514
  })(ProductAdjustment || {});
515
+ var RecurringChargeFailureReason = /* @__PURE__ */ ((RecurringChargeFailureReason2) => {
516
+ RecurringChargeFailureReason2["CHARGE_FAILURE"] = "CHARGE_FAILURE";
517
+ RecurringChargeFailureReason2["CREDIT_CARD_EXPIRED"] = "CREDIT_CARD_EXPIRED";
518
+ RecurringChargeFailureReason2["NO_ACTIVE_BILLING_ACCOUNT"] = "NO_ACTIVE_BILLING_ACCOUNT";
519
+ return RecurringChargeFailureReason2;
520
+ })(RecurringChargeFailureReason || {});
498
521
  var FieldToUpdate = /* @__PURE__ */ ((FieldToUpdate2) => {
499
522
  FieldToUpdate2["STATUS"] = "STATUS";
500
523
  FieldToUpdate2["COUNTRY_CODE"] = "COUNTRY_CODE";
@@ -863,6 +886,7 @@ export {
863
886
  ProductAdjustment,
864
887
  ProviderName,
865
888
  ReactivationReasonEnum,
889
+ RecurringChargeFailureReason,
866
890
  RefundType,
867
891
  SortOrder,
868
892
  Status,