@scaleway/sdk-tem 2.2.1 → 2.3.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/README.md +1 -1
- package/dist/_virtual/_rolldown/runtime.js +11 -0
- package/dist/index.gen.js +2 -4
- package/dist/v1alpha1/api.gen.js +347 -520
- package/dist/v1alpha1/content.gen.js +5 -12
- package/dist/v1alpha1/index.gen.js +36 -34
- package/dist/v1alpha1/marshalling.gen.js +353 -534
- package/dist/v1alpha1/validation-rules.gen.js +90 -124
- package/package.json +4 -4
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
];
|
|
5
|
-
|
|
6
|
-
"new",
|
|
7
|
-
"sending"
|
|
8
|
-
];
|
|
9
|
-
export {
|
|
10
|
-
DOMAIN_TRANSIENT_STATUSES,
|
|
11
|
-
EMAIL_TRANSIENT_STATUSES
|
|
12
|
-
};
|
|
1
|
+
/** Lists transient statutes of the enum {@link DomainStatus}. */
|
|
2
|
+
const DOMAIN_TRANSIENT_STATUSES = ["pending", "autoconfiguring"];
|
|
3
|
+
/** Lists transient statutes of the enum {@link EmailStatus}. */
|
|
4
|
+
const EMAIL_TRANSIENT_STATUSES = ["new", "sending"];
|
|
5
|
+
export { DOMAIN_TRANSIENT_STATUSES, EMAIL_TRANSIENT_STATUSES };
|
|
@@ -1,36 +1,38 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { __exportAll } from "../_virtual/_rolldown/runtime.js";
|
|
2
2
|
import { DOMAIN_TRANSIENT_STATUSES, EMAIL_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
3
3
|
import { marshalBulkCreateBlocklistsRequest, marshalCreateDomainRequest, marshalCreateEmailRequest, marshalCreateWebhookRequest, marshalUpdateDomainRequest, marshalUpdateOfferSubscriptionRequest, marshalUpdateProjectSettingsRequest, marshalUpdateWebhookRequest, unmarshalBulkCreateBlocklistsResponse, unmarshalCreateEmailResponse, unmarshalDomain, unmarshalDomainLastStatus, unmarshalEmail, unmarshalListBlocklistsResponse, unmarshalListDomainsResponse, unmarshalListEmailsResponse, unmarshalListOfferSubscriptionsResponse, unmarshalListOffersResponse, unmarshalListPoolsResponse, unmarshalListWebhookEventsResponse, unmarshalListWebhooksResponse, unmarshalOfferSubscription, unmarshalProjectConsumption, unmarshalProjectSettings, unmarshalStatistics, unmarshalWebhook } from "./marshalling.gen.js";
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
4
|
+
import { API } from "./api.gen.js";
|
|
5
|
+
import { validation_rules_gen_exports } from "./validation-rules.gen.js";
|
|
6
|
+
var index_gen_exports = /* @__PURE__ */ __exportAll({
|
|
7
|
+
API: () => API,
|
|
8
|
+
DOMAIN_TRANSIENT_STATUSES: () => DOMAIN_TRANSIENT_STATUSES,
|
|
9
|
+
EMAIL_TRANSIENT_STATUSES: () => EMAIL_TRANSIENT_STATUSES,
|
|
10
|
+
ValidationRules: () => validation_rules_gen_exports,
|
|
11
|
+
marshalBulkCreateBlocklistsRequest: () => marshalBulkCreateBlocklistsRequest,
|
|
12
|
+
marshalCreateDomainRequest: () => marshalCreateDomainRequest,
|
|
13
|
+
marshalCreateEmailRequest: () => marshalCreateEmailRequest,
|
|
14
|
+
marshalCreateWebhookRequest: () => marshalCreateWebhookRequest,
|
|
15
|
+
marshalUpdateDomainRequest: () => marshalUpdateDomainRequest,
|
|
16
|
+
marshalUpdateOfferSubscriptionRequest: () => marshalUpdateOfferSubscriptionRequest,
|
|
17
|
+
marshalUpdateProjectSettingsRequest: () => marshalUpdateProjectSettingsRequest,
|
|
18
|
+
marshalUpdateWebhookRequest: () => marshalUpdateWebhookRequest,
|
|
19
|
+
unmarshalBulkCreateBlocklistsResponse: () => unmarshalBulkCreateBlocklistsResponse,
|
|
20
|
+
unmarshalCreateEmailResponse: () => unmarshalCreateEmailResponse,
|
|
21
|
+
unmarshalDomain: () => unmarshalDomain,
|
|
22
|
+
unmarshalDomainLastStatus: () => unmarshalDomainLastStatus,
|
|
23
|
+
unmarshalEmail: () => unmarshalEmail,
|
|
24
|
+
unmarshalListBlocklistsResponse: () => unmarshalListBlocklistsResponse,
|
|
25
|
+
unmarshalListDomainsResponse: () => unmarshalListDomainsResponse,
|
|
26
|
+
unmarshalListEmailsResponse: () => unmarshalListEmailsResponse,
|
|
27
|
+
unmarshalListOfferSubscriptionsResponse: () => unmarshalListOfferSubscriptionsResponse,
|
|
28
|
+
unmarshalListOffersResponse: () => unmarshalListOffersResponse,
|
|
29
|
+
unmarshalListPoolsResponse: () => unmarshalListPoolsResponse,
|
|
30
|
+
unmarshalListWebhookEventsResponse: () => unmarshalListWebhookEventsResponse,
|
|
31
|
+
unmarshalListWebhooksResponse: () => unmarshalListWebhooksResponse,
|
|
32
|
+
unmarshalOfferSubscription: () => unmarshalOfferSubscription,
|
|
33
|
+
unmarshalProjectConsumption: () => unmarshalProjectConsumption,
|
|
34
|
+
unmarshalProjectSettings: () => unmarshalProjectSettings,
|
|
35
|
+
unmarshalStatistics: () => unmarshalStatistics,
|
|
36
|
+
unmarshalWebhook: () => unmarshalWebhook
|
|
37
|
+
});
|
|
38
|
+
export { index_gen_exports };
|