@scaleway/sdk 2.12.0 → 2.13.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.
|
@@ -137,6 +137,7 @@ const marshalEphemeralPolicy = (request, defaults) => ({
|
|
|
137
137
|
const marshalCreateSecretRequest = (request, defaults) => ({
|
|
138
138
|
description: request.description,
|
|
139
139
|
ephemeral_policy: request.ephemeralPolicy !== undefined ? marshalEphemeralPolicy(request.ephemeralPolicy) : undefined,
|
|
140
|
+
is_protected: request.isProtected,
|
|
140
141
|
name: request.name,
|
|
141
142
|
path: request.path,
|
|
142
143
|
project_id: request.projectId ?? defaults.defaultProjectId,
|
|
@@ -99,6 +99,16 @@ const unmarshalDomainLastStatusDkimRecord = data => {
|
|
|
99
99
|
status: data.status
|
|
100
100
|
};
|
|
101
101
|
};
|
|
102
|
+
const unmarshalDomainLastStatusDmarcRecord = data => {
|
|
103
|
+
if (!isJSONObject(data)) {
|
|
104
|
+
throw new TypeError(`Unmarshalling the type 'DomainLastStatusDmarcRecord' failed as data isn't a dictionary.`);
|
|
105
|
+
}
|
|
106
|
+
return {
|
|
107
|
+
error: data.error,
|
|
108
|
+
lastValidAt: unmarshalDate(data.last_valid_at),
|
|
109
|
+
status: data.status
|
|
110
|
+
};
|
|
111
|
+
};
|
|
102
112
|
const unmarshalDomainLastStatusSpfRecord = data => {
|
|
103
113
|
if (!isJSONObject(data)) {
|
|
104
114
|
throw new TypeError(`Unmarshalling the type 'DomainLastStatusSpfRecord' failed as data isn't a dictionary.`);
|
|
@@ -115,6 +125,7 @@ const unmarshalDomainLastStatus = data => {
|
|
|
115
125
|
}
|
|
116
126
|
return {
|
|
117
127
|
dkimRecord: data.dkim_record ? unmarshalDomainLastStatusDkimRecord(data.dkim_record) : undefined,
|
|
128
|
+
dmarcRecord: data.dmarc_record ? unmarshalDomainLastStatusDmarcRecord(data.dmarc_record) : undefined,
|
|
118
129
|
domainId: data.domain_id,
|
|
119
130
|
domainName: data.domain_name,
|
|
120
131
|
spfRecord: data.spf_record ? unmarshalDomainLastStatusSpfRecord(data.spf_record) : undefined
|
package/dist/index.cjs
CHANGED
|
@@ -497,7 +497,7 @@ const assertValidSettings = obj => {
|
|
|
497
497
|
}
|
|
498
498
|
};
|
|
499
499
|
|
|
500
|
-
const version = 'v2.
|
|
500
|
+
const version = 'v2.12.0';
|
|
501
501
|
const userAgent = `scaleway-sdk-js/${version}`;
|
|
502
502
|
|
|
503
503
|
const isBrowser = () =>
|
|
@@ -24225,6 +24225,7 @@ const marshalEphemeralPolicy = (request, defaults) => ({
|
|
|
24225
24225
|
const marshalCreateSecretRequest = (request, defaults) => ({
|
|
24226
24226
|
description: request.description,
|
|
24227
24227
|
ephemeral_policy: request.ephemeralPolicy !== undefined ? marshalEphemeralPolicy(request.ephemeralPolicy) : undefined,
|
|
24228
|
+
is_protected: request.isProtected,
|
|
24228
24229
|
name: request.name,
|
|
24229
24230
|
path: request.path,
|
|
24230
24231
|
project_id: request.projectId ?? defaults.defaultProjectId,
|
|
@@ -25318,6 +25319,16 @@ const unmarshalDomainLastStatusDkimRecord = data => {
|
|
|
25318
25319
|
status: data.status
|
|
25319
25320
|
};
|
|
25320
25321
|
};
|
|
25322
|
+
const unmarshalDomainLastStatusDmarcRecord = data => {
|
|
25323
|
+
if (!isJSONObject(data)) {
|
|
25324
|
+
throw new TypeError(`Unmarshalling the type 'DomainLastStatusDmarcRecord' failed as data isn't a dictionary.`);
|
|
25325
|
+
}
|
|
25326
|
+
return {
|
|
25327
|
+
error: data.error,
|
|
25328
|
+
lastValidAt: unmarshalDate(data.last_valid_at),
|
|
25329
|
+
status: data.status
|
|
25330
|
+
};
|
|
25331
|
+
};
|
|
25321
25332
|
const unmarshalDomainLastStatusSpfRecord = data => {
|
|
25322
25333
|
if (!isJSONObject(data)) {
|
|
25323
25334
|
throw new TypeError(`Unmarshalling the type 'DomainLastStatusSpfRecord' failed as data isn't a dictionary.`);
|
|
@@ -25334,6 +25345,7 @@ const unmarshalDomainLastStatus = data => {
|
|
|
25334
25345
|
}
|
|
25335
25346
|
return {
|
|
25336
25347
|
dkimRecord: data.dkim_record ? unmarshalDomainLastStatusDkimRecord(data.dkim_record) : undefined,
|
|
25348
|
+
dmarcRecord: data.dmarc_record ? unmarshalDomainLastStatusDmarcRecord(data.dmarc_record) : undefined,
|
|
25337
25349
|
domainId: data.domain_id,
|
|
25338
25350
|
domainName: data.domain_name,
|
|
25339
25351
|
spfRecord: data.spf_record ? unmarshalDomainLastStatusSpfRecord(data.spf_record) : undefined
|
package/dist/index.d.ts
CHANGED
|
@@ -12878,9 +12878,10 @@ interface ServerIp {
|
|
|
12878
12878
|
provisioningMode: ServerIpProvisioningMode;
|
|
12879
12879
|
/** Tags associated with the IP. */
|
|
12880
12880
|
tags: string[];
|
|
12881
|
-
state: ServerIpState;
|
|
12882
12881
|
/** The ip_id of an IPAM ip if the ip is created from IPAM, null if not. */
|
|
12883
12882
|
ipamId: string;
|
|
12883
|
+
/** IP address state. */
|
|
12884
|
+
state: ServerIpState;
|
|
12884
12885
|
}
|
|
12885
12886
|
interface ServerIpv6 {
|
|
12886
12887
|
/** Instance IPv6 IP-Address. */
|
|
@@ -18813,7 +18814,7 @@ interface ExternalNode {
|
|
|
18813
18814
|
nodeLabels: Record<string, string>;
|
|
18814
18815
|
nodeTaints: ExternalNodeCoreV1Taint[];
|
|
18815
18816
|
}
|
|
18816
|
-
type GetClusterKubeConfigRequest
|
|
18817
|
+
type GetClusterKubeConfigRequest = {
|
|
18817
18818
|
/**
|
|
18818
18819
|
* Region to target. If none is passed will use default region from the
|
|
18819
18820
|
* config.
|
|
@@ -19255,7 +19256,7 @@ declare class API$e extends API$x {
|
|
|
19255
19256
|
* @returns A Promise of ListClusterAvailableTypesResponse
|
|
19256
19257
|
*/
|
|
19257
19258
|
listClusterAvailableTypes: (request: Readonly<ListClusterAvailableTypesRequest>) => Promise<ListClusterAvailableTypesResponse>;
|
|
19258
|
-
protected _getClusterKubeConfig: (request: Readonly<GetClusterKubeConfigRequest
|
|
19259
|
+
protected _getClusterKubeConfig: (request: Readonly<GetClusterKubeConfigRequest>) => Promise<Blob>;
|
|
19259
19260
|
/**
|
|
19260
19261
|
* Reset the admin token of a Cluster. Reset the admin token for a specific
|
|
19261
19262
|
* Kubernetes cluster. This will revoke the old admin token (which will not be
|
|
@@ -19433,16 +19434,6 @@ declare class API$e extends API$x {
|
|
|
19433
19434
|
};
|
|
19434
19435
|
}
|
|
19435
19436
|
|
|
19436
|
-
type GetClusterKubeConfigRequest = {
|
|
19437
|
-
/**
|
|
19438
|
-
* Region to target. If none is passed will use default region from the
|
|
19439
|
-
* config.
|
|
19440
|
-
*/
|
|
19441
|
-
region?: Region;
|
|
19442
|
-
/** Cluster ID for which to download the kubeconfig. */
|
|
19443
|
-
clusterId: string;
|
|
19444
|
-
};
|
|
19445
|
-
|
|
19446
19437
|
declare class K8SUtilsAPI extends API$e {
|
|
19447
19438
|
/**
|
|
19448
19439
|
* Get configuration of a kube cluster.
|
|
@@ -19587,6 +19578,7 @@ type index$f_DeleteNodeRequest = DeleteNodeRequest;
|
|
|
19587
19578
|
type index$f_DeletePoolRequest = DeletePoolRequest;
|
|
19588
19579
|
type index$f_ExternalNode = ExternalNode;
|
|
19589
19580
|
type index$f_ExternalNodeCoreV1Taint = ExternalNodeCoreV1Taint;
|
|
19581
|
+
type index$f_GetClusterKubeConfigRequest = GetClusterKubeConfigRequest;
|
|
19590
19582
|
type index$f_GetNodeRequest = GetNodeRequest;
|
|
19591
19583
|
type index$f_GetPoolRequest = GetPoolRequest;
|
|
19592
19584
|
type index$f_Ingress = Ingress;
|
|
@@ -19621,7 +19613,7 @@ type index$f_UpdatePoolRequestUpgradePolicy = UpdatePoolRequestUpgradePolicy;
|
|
|
19621
19613
|
type index$f_UpgradeClusterRequest = UpgradeClusterRequest;
|
|
19622
19614
|
type index$f_UpgradePoolRequest = UpgradePoolRequest;
|
|
19623
19615
|
declare namespace index$f {
|
|
19624
|
-
export { K8SUtilsAPI as API, type index$f_AutoscalerEstimator as AutoscalerEstimator, type index$f_AutoscalerExpander as AutoscalerExpander, CLUSTER_TRANSIENT_STATUSES$1 as CLUSTER_TRANSIENT_STATUSES, type index$f_CNI as CNI, type Cluster$1 as Cluster, type index$f_ClusterAutoUpgrade as ClusterAutoUpgrade, type index$f_ClusterAutoscalerConfig as ClusterAutoscalerConfig, type index$f_ClusterOpenIDConnectConfig as ClusterOpenIDConnectConfig, type ClusterStatus$1 as ClusterStatus, type index$f_ClusterType as ClusterType, type index$f_ClusterTypeAvailability as ClusterTypeAvailability, type index$f_ClusterTypeResiliency as ClusterTypeResiliency, type CreateClusterRequest$2 as CreateClusterRequest, type index$f_CreateClusterRequestAutoUpgrade as CreateClusterRequestAutoUpgrade, type CreateClusterRequestAutoscalerConfig$1 as CreateClusterRequestAutoscalerConfig, type CreateClusterRequestOpenIDConnectConfig$1 as CreateClusterRequestOpenIDConnectConfig, type CreateClusterRequestPoolConfig$1 as CreateClusterRequestPoolConfig, type index$f_CreateClusterRequestPoolConfigUpgradePolicy as CreateClusterRequestPoolConfigUpgradePolicy, type index$f_CreateExternalNodeRequest as CreateExternalNodeRequest, type CreatePoolRequest$1 as CreatePoolRequest, type index$f_CreatePoolRequestUpgradePolicy as CreatePoolRequestUpgradePolicy, type DeleteClusterRequest$1 as DeleteClusterRequest, type index$f_DeleteNodeRequest as DeleteNodeRequest, type index$f_DeletePoolRequest as DeletePoolRequest, type index$f_ExternalNode as ExternalNode, type index$f_ExternalNodeCoreV1Taint as ExternalNodeCoreV1Taint, type
|
|
19616
|
+
export { K8SUtilsAPI as API, type index$f_AutoscalerEstimator as AutoscalerEstimator, type index$f_AutoscalerExpander as AutoscalerExpander, CLUSTER_TRANSIENT_STATUSES$1 as CLUSTER_TRANSIENT_STATUSES, type index$f_CNI as CNI, type Cluster$1 as Cluster, type index$f_ClusterAutoUpgrade as ClusterAutoUpgrade, type index$f_ClusterAutoscalerConfig as ClusterAutoscalerConfig, type index$f_ClusterOpenIDConnectConfig as ClusterOpenIDConnectConfig, type ClusterStatus$1 as ClusterStatus, type index$f_ClusterType as ClusterType, type index$f_ClusterTypeAvailability as ClusterTypeAvailability, type index$f_ClusterTypeResiliency as ClusterTypeResiliency, type CreateClusterRequest$2 as CreateClusterRequest, type index$f_CreateClusterRequestAutoUpgrade as CreateClusterRequestAutoUpgrade, type CreateClusterRequestAutoscalerConfig$1 as CreateClusterRequestAutoscalerConfig, type CreateClusterRequestOpenIDConnectConfig$1 as CreateClusterRequestOpenIDConnectConfig, type CreateClusterRequestPoolConfig$1 as CreateClusterRequestPoolConfig, type index$f_CreateClusterRequestPoolConfigUpgradePolicy as CreateClusterRequestPoolConfigUpgradePolicy, type index$f_CreateExternalNodeRequest as CreateExternalNodeRequest, type CreatePoolRequest$1 as CreatePoolRequest, type index$f_CreatePoolRequestUpgradePolicy as CreatePoolRequestUpgradePolicy, type DeleteClusterRequest$1 as DeleteClusterRequest, type index$f_DeleteNodeRequest as DeleteNodeRequest, type index$f_DeletePoolRequest as DeletePoolRequest, type index$f_ExternalNode as ExternalNode, type index$f_ExternalNodeCoreV1Taint as ExternalNodeCoreV1Taint, type index$f_GetClusterKubeConfigRequest as GetClusterKubeConfigRequest, type GetClusterRequest$1 as GetClusterRequest, type index$f_GetNodeRequest as GetNodeRequest, type index$f_GetPoolRequest as GetPoolRequest, type GetVersionRequest$1 as GetVersionRequest, type index$f_Ingress as Ingress, type index$f_ListClusterAvailableTypesRequest as ListClusterAvailableTypesRequest, type index$f_ListClusterAvailableTypesResponse as ListClusterAvailableTypesResponse, type index$f_ListClusterAvailableVersionsRequest as ListClusterAvailableVersionsRequest, type index$f_ListClusterAvailableVersionsResponse as ListClusterAvailableVersionsResponse, type ListClusterTypesRequest$1 as ListClusterTypesRequest, type index$f_ListClusterTypesResponse as ListClusterTypesResponse, type ListClustersRequest$2 as ListClustersRequest, type ListClustersRequestOrderBy$1 as ListClustersRequestOrderBy, type ListClustersResponse$1 as ListClustersResponse, type ListNodesRequest$1 as ListNodesRequest, type index$f_ListNodesRequestOrderBy as ListNodesRequestOrderBy, type index$f_ListNodesResponse as ListNodesResponse, type ListPoolsRequest$1 as ListPoolsRequest, type index$f_ListPoolsRequestOrderBy as ListPoolsRequestOrderBy, type index$f_ListPoolsResponse as ListPoolsResponse, type ListVersionsRequest$1 as ListVersionsRequest, type ListVersionsResponse$1 as ListVersionsResponse, type MaintenanceWindow$1 as MaintenanceWindow, type index$f_MaintenanceWindowDayOfTheWeek as MaintenanceWindowDayOfTheWeek, type index$f_MigrateToPrivateNetworkClusterRequest as MigrateToPrivateNetworkClusterRequest, index$f_NODE_TRANSIENT_STATUSES as NODE_TRANSIENT_STATUSES, type index$f_Node as Node, type index$f_NodeStatus as NodeStatus, index$f_POOL_TRANSIENT_STATUSES as POOL_TRANSIENT_STATUSES, type index$f_Pool as Pool, type index$f_PoolStatus as PoolStatus, type index$f_PoolUpgradePolicy as PoolUpgradePolicy, type index$f_PoolVolumeType as PoolVolumeType, type index$f_RebootNodeRequest as RebootNodeRequest, type index$f_ReplaceNodeRequest as ReplaceNodeRequest, type index$f_ResetClusterAdminTokenRequest as ResetClusterAdminTokenRequest, type index$f_Runtime as Runtime, type index$f_SetClusterTypeRequest as SetClusterTypeRequest, type UpdateClusterRequest$2 as UpdateClusterRequest, type index$f_UpdateClusterRequestAutoUpgrade as UpdateClusterRequestAutoUpgrade, type UpdateClusterRequestAutoscalerConfig$1 as UpdateClusterRequestAutoscalerConfig, type index$f_UpdateClusterRequestOpenIDConnectConfig as UpdateClusterRequestOpenIDConnectConfig, type index$f_UpdatePoolRequest as UpdatePoolRequest, type index$f_UpdatePoolRequestUpgradePolicy as UpdatePoolRequestUpgradePolicy, type index$f_UpgradeClusterRequest as UpgradeClusterRequest, type index$f_UpgradePoolRequest as UpgradePoolRequest, validationRules_gen$4 as ValidationRules, type Version$2 as Version };
|
|
19625
19617
|
}
|
|
19626
19618
|
|
|
19627
19619
|
declare namespace index$e {
|
|
@@ -28424,6 +28416,8 @@ type CreateSecretRequest = {
|
|
|
28424
28416
|
* default, the policy is applied to all the secret's versions.
|
|
28425
28417
|
*/
|
|
28426
28418
|
ephemeralPolicy?: EphemeralPolicy;
|
|
28419
|
+
/** A protected secret cannot be deleted. */
|
|
28420
|
+
isProtected: boolean;
|
|
28427
28421
|
};
|
|
28428
28422
|
type CreateSecretVersionRequest = {
|
|
28429
28423
|
/**
|
|
@@ -29814,6 +29808,14 @@ interface DomainLastStatusDkimRecord {
|
|
|
29814
29808
|
/** An error text displays in case the record is not valid. */
|
|
29815
29809
|
error?: string;
|
|
29816
29810
|
}
|
|
29811
|
+
interface DomainLastStatusDmarcRecord {
|
|
29812
|
+
/** Status of the DMARC record's configuration. */
|
|
29813
|
+
status: DomainLastStatusRecordStatus;
|
|
29814
|
+
/** Time and date the DMARC record was last valid. */
|
|
29815
|
+
lastValidAt?: Date;
|
|
29816
|
+
/** An error text displays in case the record is not valid. */
|
|
29817
|
+
error?: string;
|
|
29818
|
+
}
|
|
29817
29819
|
interface DomainLastStatusSpfRecord {
|
|
29818
29820
|
/** Status of the SPF record's configuration. */
|
|
29819
29821
|
status: DomainLastStatusRecordStatus;
|
|
@@ -29933,6 +29935,8 @@ interface DomainLastStatus {
|
|
|
29933
29935
|
spfRecord?: DomainLastStatusSpfRecord;
|
|
29934
29936
|
/** The DKIM record verification data. */
|
|
29935
29937
|
dkimRecord?: DomainLastStatusDkimRecord;
|
|
29938
|
+
/** The DMARC record verification data. */
|
|
29939
|
+
dmarcRecord?: DomainLastStatusDmarcRecord;
|
|
29936
29940
|
}
|
|
29937
29941
|
type GetDomainLastStatusRequest = {
|
|
29938
29942
|
/**
|
|
@@ -30226,6 +30230,7 @@ declare const index_gen$4_DOMAIN_TRANSIENT_STATUSES: typeof DOMAIN_TRANSIENT_STA
|
|
|
30226
30230
|
type index_gen$4_Domain = Domain;
|
|
30227
30231
|
type index_gen$4_DomainLastStatus = DomainLastStatus;
|
|
30228
30232
|
type index_gen$4_DomainLastStatusDkimRecord = DomainLastStatusDkimRecord;
|
|
30233
|
+
type index_gen$4_DomainLastStatusDmarcRecord = DomainLastStatusDmarcRecord;
|
|
30229
30234
|
type index_gen$4_DomainLastStatusRecordStatus = DomainLastStatusRecordStatus;
|
|
30230
30235
|
type index_gen$4_DomainLastStatusSpfRecord = DomainLastStatusSpfRecord;
|
|
30231
30236
|
type index_gen$4_DomainReputation = DomainReputation;
|
|
@@ -30250,7 +30255,7 @@ type index_gen$4_ListEmailsResponse = ListEmailsResponse;
|
|
|
30250
30255
|
type index_gen$4_RevokeDomainRequest = RevokeDomainRequest;
|
|
30251
30256
|
type index_gen$4_Statistics = Statistics;
|
|
30252
30257
|
declare namespace index_gen$4 {
|
|
30253
|
-
export { API$4 as API, type index_gen$4_CancelEmailRequest as CancelEmailRequest, type index_gen$4_CheckDomainRequest as CheckDomainRequest, type index_gen$4_CreateDomainRequest as CreateDomainRequest, type index_gen$4_CreateEmailRequest as CreateEmailRequest, type index_gen$4_CreateEmailRequestAddress as CreateEmailRequestAddress, type index_gen$4_CreateEmailRequestAttachment as CreateEmailRequestAttachment, type index_gen$4_CreateEmailRequestHeader as CreateEmailRequestHeader, type index_gen$4_CreateEmailResponse as CreateEmailResponse, index_gen$4_DOMAIN_TRANSIENT_STATUSES as DOMAIN_TRANSIENT_STATUSES, type index_gen$4_Domain as Domain, type index_gen$4_DomainLastStatus as DomainLastStatus, type index_gen$4_DomainLastStatusDkimRecord as DomainLastStatusDkimRecord, type index_gen$4_DomainLastStatusRecordStatus as DomainLastStatusRecordStatus, type index_gen$4_DomainLastStatusSpfRecord as DomainLastStatusSpfRecord, type index_gen$4_DomainReputation as DomainReputation, type index_gen$4_DomainReputationStatus as DomainReputationStatus, type index_gen$4_DomainStatistics as DomainStatistics, type index_gen$4_DomainStatus as DomainStatus, index_gen$4_EMAIL_TRANSIENT_STATUSES as EMAIL_TRANSIENT_STATUSES, type index_gen$4_Email as Email, type index_gen$4_EmailFlag as EmailFlag, type index_gen$4_EmailRcptType as EmailRcptType, type index_gen$4_EmailStatus as EmailStatus, type index_gen$4_EmailTry as EmailTry, type index_gen$4_GetDomainLastStatusRequest as GetDomainLastStatusRequest, type index_gen$4_GetDomainRequest as GetDomainRequest, type index_gen$4_GetEmailRequest as GetEmailRequest, type index_gen$4_GetStatisticsRequest as GetStatisticsRequest, type index_gen$4_ListDomainsRequest as ListDomainsRequest, type index_gen$4_ListDomainsResponse as ListDomainsResponse, type index_gen$4_ListEmailsRequest as ListEmailsRequest, type index_gen$4_ListEmailsRequestOrderBy as ListEmailsRequestOrderBy, type index_gen$4_ListEmailsResponse as ListEmailsResponse, type index_gen$4_RevokeDomainRequest as RevokeDomainRequest, type index_gen$4_Statistics as Statistics };
|
|
30258
|
+
export { API$4 as API, type index_gen$4_CancelEmailRequest as CancelEmailRequest, type index_gen$4_CheckDomainRequest as CheckDomainRequest, type index_gen$4_CreateDomainRequest as CreateDomainRequest, type index_gen$4_CreateEmailRequest as CreateEmailRequest, type index_gen$4_CreateEmailRequestAddress as CreateEmailRequestAddress, type index_gen$4_CreateEmailRequestAttachment as CreateEmailRequestAttachment, type index_gen$4_CreateEmailRequestHeader as CreateEmailRequestHeader, type index_gen$4_CreateEmailResponse as CreateEmailResponse, index_gen$4_DOMAIN_TRANSIENT_STATUSES as DOMAIN_TRANSIENT_STATUSES, type index_gen$4_Domain as Domain, type index_gen$4_DomainLastStatus as DomainLastStatus, type index_gen$4_DomainLastStatusDkimRecord as DomainLastStatusDkimRecord, type index_gen$4_DomainLastStatusDmarcRecord as DomainLastStatusDmarcRecord, type index_gen$4_DomainLastStatusRecordStatus as DomainLastStatusRecordStatus, type index_gen$4_DomainLastStatusSpfRecord as DomainLastStatusSpfRecord, type index_gen$4_DomainReputation as DomainReputation, type index_gen$4_DomainReputationStatus as DomainReputationStatus, type index_gen$4_DomainStatistics as DomainStatistics, type index_gen$4_DomainStatus as DomainStatus, index_gen$4_EMAIL_TRANSIENT_STATUSES as EMAIL_TRANSIENT_STATUSES, type index_gen$4_Email as Email, type index_gen$4_EmailFlag as EmailFlag, type index_gen$4_EmailRcptType as EmailRcptType, type index_gen$4_EmailStatus as EmailStatus, type index_gen$4_EmailTry as EmailTry, type index_gen$4_GetDomainLastStatusRequest as GetDomainLastStatusRequest, type index_gen$4_GetDomainRequest as GetDomainRequest, type index_gen$4_GetEmailRequest as GetEmailRequest, type index_gen$4_GetStatisticsRequest as GetStatisticsRequest, type index_gen$4_ListDomainsRequest as ListDomainsRequest, type index_gen$4_ListDomainsResponse as ListDomainsResponse, type index_gen$4_ListEmailsRequest as ListEmailsRequest, type index_gen$4_ListEmailsRequestOrderBy as ListEmailsRequestOrderBy, type index_gen$4_ListEmailsResponse as ListEmailsResponse, type index_gen$4_RevokeDomainRequest as RevokeDomainRequest, type index_gen$4_Statistics as Statistics };
|
|
30254
30259
|
}
|
|
30255
30260
|
|
|
30256
30261
|
declare namespace index$3 {
|
package/dist/scw/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Scaleway SDK.",
|
|
6
6
|
"keywords": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bundledDependencies": [
|
|
36
36
|
"@scaleway/random-name"
|
|
37
37
|
],
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "037ce11146f4acc91f80437ba2a7e35b43fb2532"
|
|
39
39
|
}
|