@newfold/huapi-js 2.2018.0 → 2.2028.0
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/package.json +1 -1
- package/src/index.d.ts +383 -2
- package/src/index.js +303 -3
- package/src/index.msw.d.ts +25 -1
- package/src/index.msw.js +149 -5
- package/src/index.schemas.d.ts +978 -359
- package/src/index.schemas.js +12 -0
package/src/index.schemas.js
CHANGED
|
@@ -137,6 +137,18 @@ export const SiteUpdateBodyVersionPtr = {
|
|
|
137
137
|
beta: 'beta',
|
|
138
138
|
};
|
|
139
139
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
140
|
+
export const AccountPurchaseOrder200OrderStatus = {
|
|
141
|
+
pending: 'pending',
|
|
142
|
+
completed: 'completed',
|
|
143
|
+
failed: 'failed',
|
|
144
|
+
};
|
|
145
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
146
|
+
export const AccountPurchaseOrder200HostingStatus = {
|
|
147
|
+
pending: 'pending',
|
|
148
|
+
active: 'active',
|
|
149
|
+
failed: 'failed',
|
|
150
|
+
};
|
|
151
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
140
152
|
export const HostingVisitorsSource = {
|
|
141
153
|
http: 'http',
|
|
142
154
|
https: 'https',
|