amplify-headless-interface
Advanced tools
Comparing version 1.17.0 to 1.17.1-beta.0
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.17.1-beta.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.17.0...amplify-headless-interface@1.17.1-beta.0) (2023-02-07) | ||
**Note:** Version bump only for package amplify-headless-interface | ||
# [1.17.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.16.1...amplify-headless-interface@1.17.0) (2023-02-02) | ||
@@ -36,2 +44,22 @@ | ||
# [1.16.0-beta.1](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.16.0...amplify-headless-interface@1.16.0-beta.1) (2022-12-01) | ||
**Note:** Version bump only for package amplify-headless-interface | ||
# [1.16.0-beta.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.15.0...amplify-headless-interface@1.16.0-beta.0) (2022-11-17) | ||
### Features | ||
* add API key extension headless config ([#11037](https://github.com/aws-amplify/amplify-cli/issues/11037)) ([bd087d7](https://github.com/aws-amplify/amplify-cli/commit/bd087d7a468f35f1a1e1bae390cf623121310abc)) | ||
* **category-geo:** add two new map styles 2022.10 ([#11262](https://github.com/aws-amplify/amplify-cli/issues/11262)) ([77a473e](https://github.com/aws-amplify/amplify-cli/commit/77a473ed78a945681d98b2c14822474aef966dcf)) | ||
# [1.16.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.15.0...amplify-headless-interface@1.16.0) (2022-11-17) | ||
@@ -38,0 +66,0 @@ |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -6,0 +10,0 @@ if (k2 === undefined) k2 = k; |
@@ -29,3 +29,3 @@ export interface AddApiRequest { | ||
} | ||
export declare type LambdaConflictResolver = NewLambdaConflictResolver | ExistingLambdaConflictResolver; | ||
export type LambdaConflictResolver = NewLambdaConflictResolver | ExistingLambdaConflictResolver; | ||
export interface NewLambdaConflictResolver { | ||
@@ -40,4 +40,4 @@ type: 'NEW'; | ||
} | ||
export declare type ResolutionStrategy = PredefinedResolutionStrategy | LambdaResolutionStrategy; | ||
export declare type AppSyncAuthType = AppSyncAPIKeyAuthType | AppSyncAWSIAMAuthType | AppSyncCognitoUserPoolsAuthType | AppSyncOpenIDConnectAuthType | AppSyncLambdaAuthType; | ||
export type ResolutionStrategy = PredefinedResolutionStrategy | LambdaResolutionStrategy; | ||
export type AppSyncAuthType = AppSyncAPIKeyAuthType | AppSyncAWSIAMAuthType | AppSyncCognitoUserPoolsAuthType | AppSyncOpenIDConnectAuthType | AppSyncLambdaAuthType; | ||
export interface AppSyncAPIKeyAuthType { | ||
@@ -44,0 +44,0 @@ mode: 'API_KEY'; |
@@ -6,3 +6,3 @@ import { AppSyncServiceConfiguration } from './add'; | ||
} | ||
export declare type AppSyncServiceModification = Pick<AppSyncServiceConfiguration, 'serviceName'> & Partial<Pick<AppSyncServiceConfiguration, 'transformSchema' | 'defaultAuthType' | 'additionalAuthTypes' | 'conflictResolution' | 'apiKeyExpiration'>>; | ||
export type AppSyncServiceModification = Pick<AppSyncServiceConfiguration, 'serviceName'> & Partial<Pick<AppSyncServiceConfiguration, 'transformSchema' | 'defaultAuthType' | 'additionalAuthTypes' | 'conflictResolution' | 'apiKeyExpiration'>>; | ||
//# sourceMappingURL=update.d.ts.map |
@@ -6,3 +6,3 @@ export interface AddAuthRequest { | ||
} | ||
export declare type CognitoServiceConfiguration = BaseCognitoServiceConfiguration & (NoCognitoIdentityPool | CognitoIdentityPool); | ||
export type CognitoServiceConfiguration = BaseCognitoServiceConfiguration & (NoCognitoIdentityPool | CognitoIdentityPool); | ||
export interface BaseCognitoServiceConfiguration { | ||
@@ -43,3 +43,3 @@ serviceName: 'Cognito'; | ||
} | ||
export declare type CognitoAutoVerifiedAttributesConfiguration = Array<CognitoAutoVerifyEmailConfiguration | CognitoAutoVerifyPhoneNumberConfiguration>; | ||
export type CognitoAutoVerifiedAttributesConfiguration = Array<CognitoAutoVerifyEmailConfiguration | CognitoAutoVerifyPhoneNumberConfiguration>; | ||
export interface CognitoAutoVerifyPhoneNumberConfiguration { | ||
@@ -74,3 +74,3 @@ type: 'PHONE_NUMBER'; | ||
} | ||
export declare type CognitoSocialProviderConfiguration = SocialProviderConfig | SignInWithAppleSocialProviderConfig; | ||
export type CognitoSocialProviderConfiguration = SocialProviderConfig | SignInWithAppleSocialProviderConfig; | ||
export interface CognitoPasswordPolicy { | ||
@@ -80,3 +80,3 @@ minimumLength?: number; | ||
} | ||
export declare type CognitoMFAConfiguration = CognitoMFAOff | CognitoMFASettings; | ||
export type CognitoMFAConfiguration = CognitoMFAOff | CognitoMFASettings; | ||
export interface CognitoMFAOff { | ||
@@ -83,0 +83,0 @@ mode: 'OFF'; |
@@ -6,3 +6,3 @@ import { CognitoUserPoolConfiguration, CognitoIdentityPoolConfiguration, NoCognitoIdentityPool, CognitoOAuthConfiguration } from './add'; | ||
} | ||
export declare type CognitoServiceModification = BaseCognitoServiceModification & (NoCognitoIdentityPool | ModifyCognitoIdentityPool); | ||
export type CognitoServiceModification = BaseCognitoServiceModification & (NoCognitoIdentityPool | ModifyCognitoIdentityPool); | ||
export interface BaseCognitoServiceModification { | ||
@@ -16,6 +16,6 @@ serviceName: 'Cognito'; | ||
} | ||
export declare type CognitoUserPoolModification = Pick<CognitoUserPoolConfiguration, 'userPoolGroups' | 'adminQueries' | 'mfa' | 'passwordPolicy' | 'refreshTokenPeriod' | 'readAttributes' | 'writeAttributes' | 'autoVerifiedAttributes'> & { | ||
export type CognitoUserPoolModification = Pick<CognitoUserPoolConfiguration, 'userPoolGroups' | 'adminQueries' | 'mfa' | 'passwordPolicy' | 'refreshTokenPeriod' | 'readAttributes' | 'writeAttributes' | 'autoVerifiedAttributes'> & { | ||
oAuth?: Partial<CognitoOAuthConfiguration>; | ||
}; | ||
export declare type CognitoIdentityPoolModification = Pick<CognitoIdentityPoolConfiguration, 'unauthenticatedLogin' | 'identitySocialFederation'>; | ||
export type CognitoIdentityPoolModification = Pick<CognitoIdentityPoolConfiguration, 'unauthenticatedLogin' | 'identitySocialFederation'>; | ||
//# sourceMappingURL=update.d.ts.map |
@@ -5,3 +5,3 @@ export interface AddGeoRequest { | ||
} | ||
export declare type GeoServiceConfiguration = BaseGeoServiceConfiguration & MapConfiguration; | ||
export type GeoServiceConfiguration = BaseGeoServiceConfiguration & MapConfiguration; | ||
export interface BaseGeoServiceConfiguration { | ||
@@ -8,0 +8,0 @@ serviceName: string; |
@@ -6,3 +6,3 @@ import { AccessType } from './add'; | ||
} | ||
export declare type GeoServiceModification = BaseGeoServiceModification & MapModification; | ||
export type GeoServiceModification = BaseGeoServiceModification & MapModification; | ||
export interface BaseGeoServiceModification { | ||
@@ -9,0 +9,0 @@ serviceName: string; |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -6,0 +10,0 @@ if (k2 === undefined) k2 = k; |
{ | ||
"name": "amplify-headless-interface", | ||
"version": "1.17.0", | ||
"version": "1.17.1-beta.0", | ||
"description": "interfaces for amplify headless mode payloads", | ||
@@ -23,3 +23,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "5370e8badb701f018ddc7459b3bf0ee7c80a7444" | ||
"gitHead": "e6d05226913d2126030ffefe10d75252e5280cff" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
201371
3930
2