@squidcloud/client 1.0.30 → 1.0.31

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.
@@ -10,10 +10,6 @@ export declare const UpsertIntegrationRequestSchema: {
10
10
  type: string;
11
11
  nullable: boolean;
12
12
  };
13
- secured: {
14
- type: string;
15
- nullable: boolean;
16
- };
17
13
  schema: {
18
14
  type: string;
19
15
  nullable: boolean;
@@ -132,7 +132,6 @@ export type UpsertDataIntegrationRequest = UpsertInternalIntegrationRequest | Up
132
132
  interface BaseUpsertIntegrationRequest {
133
133
  id: IntegrationId;
134
134
  type: IntegrationType;
135
- secured?: boolean;
136
135
  }
137
136
  interface BaseUpsertDataIntegrationRequest extends BaseUpsertIntegrationRequest {
138
137
  supportsExternalChanges?: boolean;
@@ -109,7 +109,6 @@ interface BaseIntegration {
109
109
  type: IntegrationType;
110
110
  creationDate: Date;
111
111
  updateDate: Date;
112
- secured: boolean;
113
112
  }
114
113
  export interface DatadogIntegration extends BaseIntegration {
115
114
  type: IntegrationType.datadog;
@@ -15,7 +15,7 @@ export interface SquidSupportedCloud {
15
15
  }
16
16
  export declare const squidSupportedRegionMap: Record<SupportedSquidRegion, SquidCloudRegion>;
17
17
  export declare const squidSupportedCloudMap: Record<SquidCloudId, SquidSupportedCloud>;
18
- export declare function convertToSquidRegion(cloudId: SquidCloudId, region: string, isDev?: boolean): SupportedSquidRegion;
18
+ export declare function convertToSquidRegion(cloudId: SquidCloudId, region: string): SupportedSquidRegion;
19
19
  export declare function convertFromSquidRegion(regionAndCloud: SupportedSquidRegion): {
20
20
  cloudId: SquidCloudId;
21
21
  region: string;