type
stringclasses 7
values | content
stringlengths 4
9.55k
| repo
stringlengths 7
96
| path
stringlengths 4
178
| language
stringclasses 1
value |
---|---|---|---|---|
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the EmailVerificationRequest class.
* @constructor
* @member {string} token The verification token that was sent to the user
*/
export interface EmailVerificationRequest {
token: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ExternalUserRequest class.
* @constructor
* @member {string} [appInvitation] The token of the app invitation which lead
* to signup
* @member {string} [testerInvitation] The token of the test invitation which
* lead to signup
* @member {string} [organizationInvitation] The token of the organization
* invitation which lead to signup
* @member {string} [avatarUrl] The avatar URL of the user
* @member {string} [displayName] The full name of the user. Might for example
* be first and last name
* @member {string} email The email address of the user
* @member {string} [name] The unique name that is used to identify the user.
* If no explicit value is given, a default will be auto-generated from the
* `display_name` value
*/
export interface ExternalUserRequest {
appInvitation?: string;
testerInvitation?: string;
organizationInvitation?: string;
avatarUrl?: string;
displayName?: string;
email: string;
name?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the FeaturePatchRequest class.
* @constructor
* @member {string} [description] The friendly name of the feature
* @member {string} [displayName] The full (friendly) name of the feature.
* @member {number} [state] The state of the feature
*/
export interface FeaturePatchRequest {
description?: string;
displayName?: string;
state?: number;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the FeatureCreateRequest class.
* @constructor
* @member {string} name The unique name of the feature
* @member {string} displayName The full (friendly) name of the feature.
* @member {number} [state] The state of the feature
* @member {string} [description] The friendly name of the feature
*/
export interface FeatureCreateRequest {
name: string;
displayName: string;
state?: number;
description?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the GrantAdminRoleRequest class.
* @constructor
* @member {string} adminRole The new admin_role. Possible values include:
* 'superAdmin', 'admin', 'devOps', 'customerSupport', 'notAdmin'
*/
export interface GrantAdminRoleRequest {
adminRole: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the InternalBulkAppResponse class.
* @constructor
* @member {string} [appName] The name of the app
* @member {string} [ownerDisplayName] The display name of the owner
*/
export interface InternalBulkAppResponse {
appName?: string;
ownerDisplayName?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the InternalUserRequest class.
* @constructor
* @member {string} [appInvitation] The token of the app invitation which lead
* to signup
* @member {string} [testerInvitation] The token of the test invitation which
* lead to signup
* @member {string} [organizationInvitation] The token of the organization
* invitation which lead to signup
* @member {string} [avatarUrl] The avatar URL of the user
* @member {string} [displayName] The full name of the user. Might for example
* be first and last name
* @member {string} email The email address of the user
* @member {string} name The unique name that is used to identify the user.
* @member {string} password The password of the user. Needs to be at least 8
* characters long and contain at least one lower- and one uppercase letter.
*/
export interface InternalUserRequest {
appInvitation?: string;
testerInvitation?: string;
organizationInvitation?: string;
avatarUrl?: string;
displayName?: string;
email: string;
name: string;
password: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationPatchRequest class.
* @constructor
* @member {string} [displayName] The full (friendly) name of the organization.
* @member {string} [name] The name of the organization used in URLs
*/
export interface OrganizationPatchRequest {
displayName?: string;
name?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationRequest class.
* @constructor
* @member {string} [displayName] The display name of the organization
* @member {string} [name] The name of the organization used in URLs
*/
export interface OrganizationRequest {
displayName?: string;
name?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationUserPatchRequest class.
* @constructor
* @member {string} [role] The user's role in the organizatiion. Possible
* values include: 'admin', 'collaborator'
*/
export interface OrganizationUserPatchRequest {
role?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the PasswordUpdateRequest class.
* @constructor
* @member {string} newPassword The new password that will be set for the user.
* Needs to be at least 8 characters long and contain at least one lower- and
* one uppercase letter.
* @member {string} [oldPassword] The old password, if needed.
*/
export interface PasswordUpdateRequest {
newPassword: string;
oldPassword?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ResendVerificationRequest class.
* @constructor
* @member {string} name The email or name of the user to resend verification
*/
export interface ResendVerificationRequest {
name: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ResetPasswordUsingTokenRequest class.
* @constructor
* @member {string} newPassword The new password. Needs to be at least 8
* characters long and contain at least one lower- and one uppercase letter.
* @member {string} token The reset password token that was sent to the user
*/
export interface ResetPasswordUsingTokenRequest {
newPassword: string;
token: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserAppPermissionsUpdateRequest class.
* @constructor
* @member {array} permissions The permissions the user has for the app
*/
export interface UserAppPermissionsUpdateRequest {
permissions: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserInvitationPermissionsUpdateRequest class.
* @constructor
* @member {array} permissions The permissions the user has for the app in the
* invitation
*/
export interface UserInvitationPermissionsUpdateRequest {
permissions: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserEmailRequest class.
* @constructor
* @member {string} userEmail The user's email address'
*/
export interface UserEmailRequest {
userEmail: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserNameUpdateRequest class.
* @constructor
* @member {string} [name] The new, unique name that is used to identify.
*/
export interface UserNameUpdateRequest {
name?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserUpdateRequest class.
* @constructor
* @member {string} [displayName] The full name of the user. Might for example
* be first and last name
*/
export interface UserUpdateRequest {
displayName?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserUpdateRequestInternal class.
* @constructor
* @member {string} [displayName] The full name of the user. Might for example
* be first and last name
* @member {string} [name] The new, unique name that is used to identify.
* @member {string} [nextNpsSurveyDate] The date in the future when the user
* should be checked again for NPS eligibility
* @member {string} [email] The email address for this user
*/
export interface UserUpdateRequestInternal {
displayName?: string;
name?: string;
nextNpsSurveyDate?: string;
email?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserSettingRequest class.
* @constructor
* @member {string} value The setting value
*/
export interface UserSettingRequest {
value: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AccountResponse class.
* @constructor
* @member {string} id The internal unique id (UUID) of the account.
* @member {string} displayName The display name of the account
* @member {string} name The slug name of the account
* @member {string} origin The creation origin of this account. Possible values
* include: 'appcenter', 'hockeyapp'
* @member {string} type The type of this account. Possible values include:
* 'user', 'org'
*/
export interface AccountResponse {
id: string;
displayName: string;
name: string;
origin: string;
type: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ApiTokenDeleteResponse class.
* @constructor
* @member {string} id The unique id (UUID) of the api token
* @member {string} tokenHash The hashed value of api token
*/
export interface ApiTokenDeleteResponse {
id: string;
tokenHash: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ApiTokenGetUserResponse class.
* @constructor
* @member {string} tokenId The token's unique id (UUID)
* @member {array} tokenScope The token's scope. A list of allowed roles.
* @member {string} userEmail The user email
* @member {string} userId The unique id (UUID) of the user
* @member {string} userOrigin The creation origin of the user who created this
* api token. Possible values include: 'appcenter', 'hockeyapp', 'codepush'
*/
export interface ApiTokenGetUserResponse {
tokenId: string;
tokenScope: string[];
userEmail: string;
userId: string;
userOrigin: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ApiTokenResponse class.
* @constructor
* @member {string} id The unique id (UUID) of the api token
* @member {string} createdAt The creation time
* @member {array} [scope] The token's scope. A list of allowed roles.
* @member {object} [encryptedToken] The encrypted value of a token. This value
* will only be returned for token of type in_app_update.
* @member {string} [description] The description of the token
*/
export interface ApiTokenResponse {
id: string;
createdAt: string;
scope?: string[];
encryptedToken?: any;
description?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppGroupResponse class.
* @constructor
* @member {string} id The unique ID (UUID) of the app
* @member {string} groupId The unique ID (UUID) of the group that the app
* belongs to
* @member {string} [displayName] The display name of the app
* @member {string} name The name of the app used in URLs
* @member {string} os The OS the app will be running on. Possible values
* include: 'Android', 'iOS', 'macOS', 'Tizen', 'tvOS', 'Windows', 'Custom'
* @member {string} platform The platform of the app. Possible values include:
* 'Java', 'Objective-C-Swift', 'UWP', 'Cordova', 'React-Native', 'Unity',
* 'Xamarin', 'Unknown'
*/
export interface AppGroupResponse {
id: string;
groupId: string;
displayName?: string;
name: string;
os: string;
platform: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AzureSubscriptionResponse class.
* @constructor
* @member {string} subscriptionId The azure subscription id
* @member {string} tenantId The tenant id of the azure subscription belongs to
* @member {string} subscriptionName The name of the azure subscription
* @member {boolean} [isBilling] If the subscription is used for billing
* @member {boolean} [isBillable] If the subscription can be used for billing
*/
export interface AzureSubscriptionResponse {
subscriptionId: string;
tenantId: string;
subscriptionName: string;
isBilling?: boolean;
isBillable?: boolean;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the BasicAppResponse class.
* @constructor
* @member {string} id The unique ID (UUID) of the app
* @member {string} [description] The description of the app
* @member {string} displayName The display name of the app
* @member {string} [iconUrl] The string representation of the URL pointing to
* the app's icon
* @member {string} name The name of the app used in URLs
* @member {string} os The OS the app will be running on. Possible values
* include: 'Android', 'iOS', 'macOS', 'Tizen', 'tvOS', 'Windows', 'Custom'
* @member {object} owner
* @member {string} [owner.id] The unique id (UUID) of the owner
* @member {string} [owner.avatarUrl] The avatar URL of the owner
* @member {string} [owner.displayName] The owner's display name
* @member {string} [owner.email] The owner's email address
* @member {string} [owner.name] The unique name that used to identify the
* owner
* @member {string} [owner.type] The owner type. Can either be 'org' or 'user'.
* Possible values include: 'org', 'user'
*/
export interface BasicAppResponse {
id: string;
description?: string;
displayName: string;
iconUrl?: string;
name: string;
os: string;
owner: Owner;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppResponse class.
* @constructor
* @member {string} appSecret A unique and secret key used to identify the app
* in communication with the ingestion endpoint for crash reporting and
* analytics
* @member {object} [azureSubscription]
* @member {string} [azureSubscription.subscriptionId] The azure subscription
* id
* @member {string} [azureSubscription.tenantId] The tenant id of the azure
* subscription belongs to
* @member {string} [azureSubscription.subscriptionName] The name of the azure
* subscription
* @member {boolean} [azureSubscription.isBilling] If the subscription is used
* for billing
* @member {boolean} [azureSubscription.isBillable] If the subscription can be
* used for billing
* @member {string} platform The platform of the app. Possible values include:
* 'Java', 'Objective-C-Swift', 'UWP', 'Cordova', 'React-Native', 'Unity',
* 'Xamarin', 'Unknown'
* @member {string} origin The creation origin of this app. Possible values
* include: 'appcenter', 'hockeyapp', 'codepush'
* @member {string} [createdAt] The created date of this app
* @member {string} [updatedAt] The last updated date of this app
* @member {array} [memberPermissions] The permissions of the calling user
*/
export interface AppResponse extends BasicAppResponse {
appSecret: string;
azureSubscription?: AzureSubscriptionResponse;
platform: string;
origin: string;
createdAt?: string;
updatedAt?: string;
memberPermissions?: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserProfileResponse class.
* @constructor
* @member {string} id The unique id (UUID) of the user
* @member {string} [avatarUrl] The avatar URL of the user
* @member {boolean} [canChangePassword] User is required to send an old
* password in order to change the password.
* @member {string} displayName The full name of the user. Might for example be
* first and last name
* @member {string} email The email address of the user
* @member {string} name The unique name that is used to identify the user.
* @member {array} [permissions] The permissions the user has for the app
* @member {string} origin The creation origin of this user. Possible values
* include: 'appcenter', 'hockeyapp', 'codepush'
*/
export interface UserProfileResponse {
id: string;
avatarUrl?: string;
canChangePassword?: boolean;
displayName: string;
email: string;
name: string;
permissions?: string[];
origin: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppInvitationDetailResponse class.
* @constructor
* @member {string} id The unique ID (UUID) of the invitation
* @member {object} app
* @member {string} [app.appSecret] A unique and secret key used to identify
* the app in communication with the ingestion endpoint for crash reporting and
* analytics
* @member {object} [app.azureSubscription]
* @member {string} [app.azureSubscription.subscriptionId] The azure
* subscription id
* @member {string} [app.azureSubscription.tenantId] The tenant id of the azure
* subscription belongs to
* @member {string} [app.azureSubscription.subscriptionName] The name of the
* azure subscription
* @member {boolean} [app.azureSubscription.isBilling] If the subscription is
* used for billing
* @member {boolean} [app.azureSubscription.isBillable] If the subscription can
* be used for billing
* @member {string} [app.platform] The platform of the app. Possible values
* include: 'Java', 'Objective-C-Swift', 'UWP', 'Cordova', 'React-Native',
* 'Unity', 'Xamarin', 'Unknown'
* @member {string} [app.origin] The creation origin of this app. Possible
* values include: 'appcenter', 'hockeyapp', 'codepush'
* @member {string} [app.createdAt] The created date of this app
* @member {string} [app.updatedAt] The last updated date of this app
* @member {array} [app.memberPermissions] The permissions of the calling user
* @member {string} email The email address of the invited user
* @member {string} inviteType The invitation type. Possible values include:
* 'developer', 'tester'
* @member {object} invitedBy
* @member {string} [invitedBy.id] The unique id (UUID) of the user
* @member {string} [invitedBy.avatarUrl] The avatar URL of the user
* @member {boolean} [invitedBy.canChangePassword] User is required to send an
* old password in order to change the password.
* @member {string} [invitedBy.displayName] The full name of the user. Might
* for example be first and last name
* @member {string} [invitedBy.email] The email address of the user
* @member {string} [invitedBy.name] The unique name that is used to identify
* the user.
* @member {array} [invitedBy.permissions] The permissions the user has for the
* app
* @member {string} [invitedBy.origin] The creation origin of this user.
* Possible values include: 'appcenter', 'hockeyapp', 'codepush'
* @member {boolean} isExistingUser Indicates whether the invited user already
* exists
* @member {array} [permissions] The permissions the user has for the app
*/
export interface AppInvitationDetailResponse {
id: string;
app: AppResponse;
email: string;
inviteType: string;
invitedBy: UserProfileResponse;
isExistingUser: boolean;
permissions?: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppRepoResponse class.
* @constructor
* @member {string} id The unique id (UUID) of the repository integration
* @member {string} appId The unique id (UUID) of the app that this repository
* integration belongs to
* @member {string} repoUrl The absolute URL of the repository
* @member {string} [repoProvider] The provider of the repository. Possible
* values include: 'github', 'bitbucket', 'vsts'
* @member {string} userId The unique id (UUID) of the user who configured the
* repository
*/
export interface AppRepoResponse {
id: string;
appId: string;
repoUrl: string;
repoProvider?: string;
userId: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the Owner class.
* @constructor
* The information about the app's owner
*
* @member {string} id The unique id (UUID) of the owner
* @member {string} [avatarUrl] The avatar URL of the owner
* @member {string} displayName The owner's display name
* @member {string} [email] The owner's email address
* @member {string} name The unique name that used to identify the owner
* @member {string} type The owner type. Can either be 'org' or 'user'.
* Possible values include: 'org', 'user'
*/
export interface Owner {
id: string;
avatarUrl?: string;
displayName: string;
email?: string;
name: string;
type: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the DistributionGroupResponse class.
* @constructor
* @member {string} id The unique ID of the distribution group
* @member {string} name The name of the distribution group used in URLs
* @member {string} origin The creation origin of this distribution group.
* Possible values include: 'appcenter', 'hockeyapp'
* @member {boolean} isPublic Whether the distribution group is public
*/
export interface DistributionGroupResponse {
id: string;
name: string;
origin: string;
isPublic: boolean;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TesterAppResponse class.
* @constructor
* @member {array} distributionGroups The IDs of the distribution groups the
* current user is member of.
*/
export interface TesterAppResponse extends BasicAppResponse {
distributionGroups: DistributionGroupResponse[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppResponseInternalRepositoriesItem class.
* @constructor
* @member {string} [repoProvider]
* @member {string} [repoUrl]
*/
export interface AppResponseInternalRepositoriesItem {
repoProvider?: string;
repoUrl?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppResponseInternal class.
* @constructor
* @member {array} [featureFlags] The feature flags that are enabled for this
* app
* @member {array} [repositories] The repositories associated with this app
*/
export interface AppResponseInternal extends AppResponse {
featureFlags?: string[];
repositories?: AppResponseInternalRepositoriesItem[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppUserPermissionResponse class.
* @constructor
* @member {string} appId The unique id (UUID) of the app
* @member {array} permissions The permissions the user has for the app
* @member {string} userEmail The email of the user
* @member {string} userId The unique id (UUID) of the user
* @member {string} appOrigin The creation origin of this app. Possible values
* include: 'appcenter', 'hockeyapp', 'codepush'
* @member {string} appSecret A unique and secret key used to identify the app
* in communication with the ingestion endpoint for crash reporting and
* analytics
*/
export interface AppUserPermissionResponse {
appId: string;
permissions: string[];
userEmail: string;
userId: string;
appOrigin: string;
appSecret: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AppWithTeamPermissionsResponse class.
* @constructor
* @member {array} [teamPermissions] The permissions the team has for the app
*/
export interface AppWithTeamPermissionsResponse extends AppResponse {
teamPermissions?: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrgUserPermissionResponse class.
* @constructor
* @member {string} orgId The unique id (UUID) of the org
* @member {string} userRole The user role for the org. Possible values
* include: 'admin', 'collaborator'
*/
export interface OrgUserPermissionResponse {
orgId: string;
userRole: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the DistributionGroupUserDeleteResponse class.
* @constructor
* @member {string} [code] The code of the result
* @member {number} [message] The message of the result
* @member {number} status The status code of the result
* @member {string} [userEmail] The email of the user
*/
export interface DistributionGroupUserDeleteResponse {
code?: string;
message?: number;
status: number;
userEmail?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the DistributionGroupUserGetResponse class.
* @constructor
* @member {string} [id] The unique id (UUID) of the user
* @member {string} [avatarUrl] The avatar URL of the user
* @member {boolean} [canChangePassword] User is required to send an old
* password in order to change the password.
* @member {string} [displayName] The full name of the user. Might for example
* be first and last name
* @member {string} email The email address of the user
* @member {boolean} [invitePending] Whether the has accepted the invite.
* Available when an invite is pending, and the value will be "true".
* @member {string} [name] The unique name that is used to identify the user.
*/
export interface DistributionGroupUserGetResponse {
id?: string;
avatarUrl?: string;
canChangePassword?: boolean;
displayName?: string;
email: string;
invitePending?: boolean;
name?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the DistributionGroupUserPostResponse class.
* @constructor
* @member {string} [code] The code of the result
* @member {boolean} [invitePending] Whether the has accepted the invite.
* Available when an invite is pending, and the value will be "true".
* @member {number} [message] The message of the result
* @member {number} status The status code of the result
* @member {string} [userEmail] The email of the user
*/
export interface DistributionGroupUserPostResponse {
code?: string;
invitePending?: boolean;
message?: number;
status: number;
userEmail?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the DistributionGroupWithUsersResponse class.
* @constructor
* @member {string} id The unique ID of the distribution group
* @member {string} name The name of the distribution group used in URLs
* @member {number} totalUserCount The count of users in the distribution group
* @member {number} notifiedUserCount The count of non-pending users in the
* distribution group who will be notified by new releases
* @member {boolean} [isPublic] Whether the distribution group is public
* @member {array} users The distribution group users
*/
export interface DistributionGroupWithUsersResponse {
id: string;
name: string;
totalUserCount: number;
notifiedUserCount: number;
isPublic?: boolean;
users: DistributionGroupUserGetResponse[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the FeatureFlagsResponse class.
* @constructor
* @member {array} featureFlags
*/
export interface FeatureFlagsResponse {
featureFlags: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the FeatureResponse class.
* @constructor
* @member {string} [description] The description of the feature
* @member {string} displayName The friendly name of the feature
* @member {string} name The unique name of the feature
* @member {number} state The state (unset, enabled, disabled) of the feature
*/
export interface FeatureResponse {
description?: string;
displayName: string;
name: string;
state: number;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the InternalUserSignupResponse class.
* @constructor
* @member {string} id The unique id (UUID) of the user
* @member {string} displayName The full name of the user. Might for example be
* first and last name
* @member {string} email The email address of the user
* @member {string} [externalProvider] The name of the external auth provider
* @member {string} [externalUserId] The user ID given by the external provider
* @member {string} name The unique name that is used to identify the user.
* @member {string} [status] The current status of the user record after
* signup. Possible values include: 'Complete', 'NeedsVerification'
*/
export interface InternalUserSignupResponse {
id: string;
displayName: string;
email: string;
externalProvider?: string;
externalUserId?: string;
name: string;
status?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationResponse class.
* @constructor
* @member {string} id The internal unique id (UUID) of the organization.
* @member {string} displayName The display name of the organization
* @member {string} name The slug name of the organization
* @member {string} origin The creation origin of this organization. Possible
* values include: 'appcenter', 'hockeyapp'
* @member {string} createdAt The creation date of this organization
* @member {string} updatedAt The date the organization was last updated at
*/
export interface OrganizationResponse {
id: string;
displayName: string;
name: string;
origin: string;
createdAt: string;
updatedAt: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the InvitationDetailResponse class.
* @constructor
* @member {string} invitationId The id of the invitation
* @member {object} invitedBy
* @member {string} [invitedBy.id] The unique id (UUID) of the user
* @member {string} [invitedBy.avatarUrl] The avatar URL of the user
* @member {boolean} [invitedBy.canChangePassword] User is required to send an
* old password in order to change the password.
* @member {string} [invitedBy.displayName] The full name of the user. Might
* for example be first and last name
* @member {string} [invitedBy.email] The email address of the user
* @member {string} [invitedBy.name] The unique name that is used to identify
* the user.
* @member {array} [invitedBy.permissions] The permissions the user has for the
* app
* @member {string} [invitedBy.origin] The creation origin of this user.
* Possible values include: 'appcenter', 'hockeyapp', 'codepush'
* @member {object} [organization]
* @member {string} [organization.id] The internal unique id (UUID) of the
* organization.
* @member {string} [organization.displayName] The display name of the
* organization
* @member {string} [organization.name] The slug name of the organization
* @member {string} [organization.origin] The creation origin of this
* organization. Possible values include: 'appcenter', 'hockeyapp'
* @member {string} [organization.createdAt] The creation date of this
* organization
* @member {string} [organization.updatedAt] The date the organization was last
* updated at
* @member {object} [app]
* @member {string} [app.appSecret] A unique and secret key used to identify
* the app in communication with the ingestion endpoint for crash reporting and
* analytics
* @member {object} [app.azureSubscription]
* @member {string} [app.azureSubscription.subscriptionId] The azure
* subscription id
* @member {string} [app.azureSubscription.tenantId] The tenant id of the azure
* subscription belongs to
* @member {string} [app.azureSubscription.subscriptionName] The name of the
* azure subscription
* @member {boolean} [app.azureSubscription.isBilling] If the subscription is
* used for billing
* @member {boolean} [app.azureSubscription.isBillable] If the subscription can
* be used for billing
* @member {string} [app.platform] The platform of the app. Possible values
* include: 'Java', 'Objective-C-Swift', 'UWP', 'Cordova', 'React-Native',
* 'Unity', 'Xamarin', 'Unknown'
* @member {string} [app.origin] The creation origin of this app. Possible
* values include: 'appcenter', 'hockeyapp', 'codepush'
* @member {string} [app.createdAt] The created date of this app
* @member {string} [app.updatedAt] The last updated date of this app
* @member {array} [app.memberPermissions] The permissions of the calling user
*/
export interface InvitationDetailResponse {
invitationId: string;
invitedBy: UserProfileResponse;
organization?: OrganizationResponse;
app?: AppResponse;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrgNameAvailabilityResponse class.
* @constructor
* @member {boolean} available The availability status of the requested org
* name
* @member {string} name The generated org name
*/
export interface OrgNameAvailabilityResponse {
available: boolean;
name: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationInvitationDetailResponse class.
* @constructor
* @member {string} id The unique ID (UUID) of the invitation
* @member {object} organization
* @member {string} [organization.id] The internal unique id (UUID) of the
* organization.
* @member {string} [organization.displayName] The display name of the
* organization
* @member {string} [organization.name] The slug name of the organization
* @member {string} [organization.origin] The creation origin of this
* organization. Possible values include: 'appcenter', 'hockeyapp'
* @member {string} [organization.createdAt] The creation date of this
* organization
* @member {string} [organization.updatedAt] The date the organization was last
* updated at
* @member {string} email The email address of the invited user
* @member {object} invitedBy
* @member {string} [invitedBy.id] The unique id (UUID) of the user
* @member {string} [invitedBy.avatarUrl] The avatar URL of the user
* @member {boolean} [invitedBy.canChangePassword] User is required to send an
* old password in order to change the password.
* @member {string} [invitedBy.displayName] The full name of the user. Might
* for example be first and last name
* @member {string} [invitedBy.email] The email address of the user
* @member {string} [invitedBy.name] The unique name that is used to identify
* the user.
* @member {array} [invitedBy.permissions] The permissions the user has for the
* app
* @member {string} [invitedBy.origin] The creation origin of this user.
* Possible values include: 'appcenter', 'hockeyapp', 'codepush'
* @member {boolean} isExistingUser Indicates whether the invited user already
* exists
* @member {string} [role] The role assigned to the invited user
*/
export interface OrganizationInvitationDetailResponse {
id: string;
organization: OrganizationResponse;
email: string;
invitedBy: UserProfileResponse;
isExistingUser: boolean;
role?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationInvitationSimpleDetailResponse class.
* @constructor
* @member {string} id The unique ID (UUID) of the invitation
* @member {string} email The email address of the invited user
* @member {object} role The role assigned to the invited user
*/
export interface OrganizationInvitationSimpleDetailResponse {
id: string;
email: string;
role: any;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationResponseInternal class.
* @constructor
* @member {array} [featureFlags] The feature flags that are enabled for this
* organization
*/
export interface OrganizationResponseInternal extends OrganizationResponse {
featureFlags?: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationResponseManagement class.
* @constructor
* @member {string} [email] The organization email, if the app was synced from
* HockeyApp
*/
export interface OrganizationResponseManagement extends OrganizationResponseInternal {
email?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the OrganizationUserResponse class.
* @constructor
* @member {string} email The email address of the user
* @member {string} displayName The full name of the user. Might for example be
* first and last name
* @member {string} joinedAt The date when the user joined the organization
* @member {string} name The unique name that is used to identify the user.
* @member {string} role The role the user has within the organization
*/
export interface OrganizationUserResponse {
email: string;
displayName: string;
joinedAt: string;
name: string;
role: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TeamAppUpdateRequest class.
* @constructor
* @member {array} permissions The permissions all members of the team have on
* the app
*/
export interface TeamAppUpdateRequest {
permissions: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TeamRequest class.
* @constructor
* @member {string} displayName The display name of the team
* @member {string} [name] The name of the team
* @member {string} [description] The description of the team
*/
export interface TeamRequest {
displayName: string;
name?: string;
description?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TeamResponse class.
* @constructor
* @member {string} id The internal unique id (UUID) of the team.
* @member {string} name The name of the team
* @member {string} displayName The display name of the team
* @member {string} [description] The description of the team
*/
export interface TeamResponse {
id: string;
name: string;
displayName: string;
description?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TeamAppResponse class.
* @constructor
* @member {array} [permissions] The permissions the team has for the app
*/
export interface TeamAppResponse extends TeamResponse {
permissions?: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the StatusResponse class.
* @constructor
* @member {string} status
*/
export interface StatusResponse {
status: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the SubscriptionMetrics class.
* @constructor
* @member {string} name The name of the subsciption (prefixed with the topic
* name)
* @member {number} messageCount The number of messages in the subscription
*/
export interface SubscriptionMetrics {
name: string;
messageCount: number;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ServiceBusStatusResponse class.
* @constructor
* @member {string} status
* @member {array} [subscriptions]
*/
export interface ServiceBusStatusResponse {
status: string;
subscriptions?: SubscriptionMetrics[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TeamUserResponse class.
* @constructor
* @member {string} email The email address of the user
* @member {string} displayName The full name of the user. Might for example be
* first and last name
* @member {string} name The unique name that is used to identify the user.
* @member {object} role The role of the user has within the team
*/
export interface TeamUserResponse {
email: string;
displayName: string;
name: string;
role: any;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserAuthResponse class.
* @constructor
* @member {string} id The unique id (UUID) of the user
* @member {string} displayName The full name of the user. Might for example be
* first and last name
* @member {string} email The email address of the user
* @member {string} [externalProvider] The name of the external auth provider
* @member {string} [externalUserId] The user ID given by the external provider
* @member {string} name The unique name that is used to identify the user
* @member {string} origin The creation origin of this user. Possible values
* include: 'appcenter', 'hockeyapp', 'codepush'
*/
export interface UserAuthResponse {
id: string;
displayName: string;
email: string;
externalProvider?: string;
externalUserId?: string;
name: string;
origin: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserNameAvailabilityResponse class.
* @constructor
* @member {boolean} available The availability status of the requested user
* name
* @member {string} name The requested user name
*/
export interface UserNameAvailabilityResponse {
available: boolean;
name: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserProfileResponseInternalSettings class.
* @constructor
* The user's settings
*
* @member {string} [marketingOptIn] The marketing opt-in setting
*/
export interface UserProfileResponseInternalSettings {
marketingOptIn?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserProfileResponseInternal class.
* @constructor
* @member {array} [featureFlags] The feature flags that are enabled for this
* app
* @member {string} [adminRole] The new admin_role. Possible values include:
* 'superAdmin', 'admin', 'devOps', 'customerSupport', 'notAdmin'
* @member {object} [settings] The user's settings
* @member {string} [settings.marketingOptIn] The marketing opt-in setting
*/
export interface UserProfileResponseInternal extends UserProfileResponse {
featureFlags?: string[];
adminRole?: string;
settings?: UserProfileResponseInternalSettings;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserProfileResponseManagement class.
* @constructor
* @member {string} [updatedAt] The date when the app was last updated
* @member {boolean} [verified] A boolean flag that indicates if the user is
* already verified
*/
export interface UserProfileResponseManagement extends UserProfileResponseInternal {
updatedAt?: string;
verified?: boolean;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UserSettingResponse class.
* @constructor
* A user's setting
*
* @member {string} [marketingOptIn] The marketing opt-in setting
*/
export interface UserSettingResponse {
marketingOptIn?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the FileAsset class.
* @constructor
* @member {string} [id]
* @member {string} [location]
* @member {string} [token]
* @member {string} [uploadDomain]
* @member {string} [uploadWindowLocation]
* @member {string} [urlEncodedToken]
*/
export interface FileAsset {
id?: string;
location?: string;
token?: string;
uploadDomain?: string;
uploadWindowLocation?: string;
urlEncodedToken?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the SourceRepository class.
* @constructor
* The source repository
*
* @member {string} [name] The repository name
* @member {object} [cloneUrl] URL used to clone the repository
*/
export interface SourceRepository {
name?: string;
cloneUrl?: any;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the VSTSProfile class.
* @constructor
* VSTS user profile
*
* @member {string} [id] Profile id
* @member {string} [displayName] Profile display name
* @member {string} [publicAlias] Profile alias
* @member {string} [emailAddress] Profile email
*/
export interface VSTSProfile {
id?: string;
displayName?: string;
publicAlias?: string;
emailAddress?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the VSTSProject class.
* @constructor
* VSTS project
*
* @member {string} [id] Project id
* @member {string} [name] Project name
* @member {string} [description] Project description
* @member {string} [url] Project URL
* @member {string} [state] Project state
* @member {string} [visibility] Project visibility
*/
export interface VSTSProject {
id?: string;
name?: string;
description?: string;
url?: string;
state?: string;
visibility?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the VSTSAccount class.
* @constructor
* VSTS account with projects list and user info
*
* @member {string} [accountId] Account id
* @member {string} [accountUri] Account uri
* @member {string} [accountName] Account name
* @member {string} [accountType] Account type
* @member {string} [accountStatus] Account status
* @member {object} [user]
* @member {string} [user.id] Profile id
* @member {string} [user.displayName] Profile display name
* @member {string} [user.publicAlias] Profile alias
* @member {string} [user.emailAddress] Profile email
* @member {array} [projects] Account projects
*/
export interface VSTSAccount {
accountId?: string;
accountUri?: string;
accountName?: string;
accountType?: string;
accountStatus?: string;
user?: VSTSProfile;
projects?: VSTSProject[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the DownloadContainer class.
* @constructor
* A download reference
*
* @member {string} uri Download URI
*/
export interface DownloadContainer {
uri: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the WebSocketContainer class.
* @constructor
* A websocket reference
*
* @member {string} url WebSocket URL
*/
export interface WebSocketContainer {
url: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XcodeArchiveProject class.
* @constructor
* @member {string} archiveTargetId The Id of the target to archive
* @member {string} projectName The project to archive container name
* @member {string} [projectPath] Full path of the target project
*/
export interface XcodeArchiveProject {
archiveTargetId: string;
projectName: string;
projectPath?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XcodeScheme class.
* @constructor
* @member {string} name Scheme name
* @member {boolean} hasTestAction Does scheme have a test action?
* @member {string} [archiveConfiguration] Build configuration set in Archive
* action
* @member {object} [archiveProject]
* @member {string} [archiveProject.archiveTargetId] The Id of the target to
* archive
* @member {string} [archiveProject.projectName] The project to archive
* container name
* @member {string} [archiveProject.projectPath] Full path of the target
* project
*/
export interface XcodeScheme {
name: string;
hasTestAction: boolean;
archiveConfiguration?: string;
archiveProject?: XcodeArchiveProject;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XcodeSchemeContainer class.
* @constructor
* @member {string} path Path to project
* @member {array} sharedSchemes Project schemes
* @member {string} [podfilePath] Path to CocoaPods file, if present
* @member {object} [cartfilePath] Path to Carthage file, if present
* @member {string} [xcodeProjectSha] repo object Id of the pbxproject
* @member {string} [workspaceProjectPaths] Related projects paths for
* xcworkspace
*/
export interface XcodeSchemeContainer {
path: string;
sharedSchemes: XcodeScheme[];
podfilePath?: string;
cartfilePath?: any;
xcodeProjectSha?: string;
workspaceProjectPaths?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XcodeToolset class.
* @constructor
* @member {array} xcodeSchemeContainers The Xcode scheme containers
*/
export interface XcodeToolset {
xcodeSchemeContainers: XcodeSchemeContainer[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XamarinSolution class.
* @constructor
* @member {string} path Path to solution
* @member {array} configurations Solution configurations
* @member {string} [defaultConfiguration] Solution default configuration
*/
export interface XamarinSolution {
path: string;
configurations: string[];
defaultConfiguration?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XamarinToolset class.
* @constructor
* @member {array} xamarinSolutions Xamarin solutions for the toolset
*/
export interface XamarinToolset {
xamarinSolutions: XamarinSolution[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AndroidModule class.
* @constructor
* @member {string} name Name of the Android module
* @member {array} [productFlavors] The product flavors of the Android module
* @member {array} [buildVariants] The detected build variants of the Android
* module (matrix of product flavor + build type (debug|release))
* @member {array} [buildTypes] The detected build types fo the Android module
* @member {boolean} [isRoot] Whether the module is at the root level of the
* project
*/
export interface AndroidModule {
name: string;
productFlavors?: string[];
buildVariants?: string[];
buildTypes?: string[];
isRoot?: boolean;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the AndroidProject class.
* @constructor
* @member {array} androidModules Android Gradle modules
* @member {string} [gradleWrapperPath] The path of the Gradle wrapper
*/
export interface AndroidProject {
androidModules: AndroidModule[];
gradleWrapperPath?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the JavaScriptSolution class.
* @constructor
* @member {string} packageJsonPath The path to the detected package.json
* @member {string} [reactNativeVersion] Version of React Native from
* package.json files
*/
export interface JavaScriptSolution {
packageJsonPath: string;
reactNativeVersion?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the JavaScriptToolset class.
* @constructor
* @member {array} packageJsonPaths Paths for detected package.json files
* @member {array} [javascriptSolutions] The React Native solutions detected
*/
export interface JavaScriptToolset {
packageJsonPaths: string[];
javascriptSolutions?: JavaScriptSolution[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UWPSolution class.
* @constructor
* @member {string} path The path to the UWP solution
* @member {array} configurations The possible configurations detected for the
* UWP solution
*/
export interface UWPSolution {
path: string;
configurations: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the UWPToolset class.
* @constructor
* @member {array} uwpSolutions The UWP solutions detected
*/
export interface UWPToolset {
uwpSolutions: UWPSolution[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TestCloudProjectFrameworkProperties class.
* @constructor
* @member {array} [configurations]
*/
export interface TestCloudProjectFrameworkProperties {
configurations?: string[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TestCloudProject class.
* @constructor
* @member {string} path The path to the TestCloud project
* @member {string} frameworkType Possible values include: 'Appium',
* 'Calabash', 'Espresso', 'UITest', 'Generated'
* @member {object} [frameworkProperties]
* @member {array} [frameworkProperties.configurations]
*/
export interface TestCloudProject {
path: string;
frameworkType: string;
frameworkProperties?: TestCloudProjectFrameworkProperties;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the TestCloudToolset class.
* @constructor
* @member {array} projects The TestCloud projects detected
*/
export interface TestCloudToolset {
projects: TestCloudProject[];
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ToolsetProject class.
* @constructor
* Abstract platform project
*
* @member {string} [name]
* @member {string} [path]
*/
export interface ToolsetProject {
name?: string;
path?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the ToolsetProjects class.
* @constructor
* A collection of projects for each type of toolset
*
* @member {string} [commit] The commit hash of the analyzed commit
* @member {object} [xcode]
* @member {array} [xcode.xcodeSchemeContainers] The Xcode scheme containers
* @member {object} [javascript]
* @member {array} [javascript.packageJsonPaths] Paths for detected
* package.json files
* @member {array} [javascript.javascriptSolutions] The React Native solutions
* detected
* @member {object} [xamarin]
* @member {array} [xamarin.xamarinSolutions] Xamarin solutions for the toolset
* @member {object} [android]
* @member {array} [android.androidModules] Android Gradle modules
* @member {string} [android.gradleWrapperPath] The path of the Gradle wrapper
* @member {object} [buildscripts]
* @member {object} [uwp]
* @member {array} [uwp.uwpSolutions] The UWP solutions detected
* @member {object} [testcloud]
* @member {array} [testcloud.projects] The TestCloud projects detected
*/
export interface ToolsetProjects {
commit?: string;
xcode?: XcodeToolset;
javascript?: JavaScriptToolset;
xamarin?: XamarinToolset;
android?: AndroidProject;
buildscripts?: { [propertyName: string]: ToolsetProject };
uwp?: UWPToolset;
testcloud?: TestCloudToolset;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the Commit class.
* @constructor
* @member {string} [sha] The commit SHA
* @member {string} [url] The URL to the commit
*/
export interface Commit {
sha?: string;
url?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the Branch class.
* @constructor
* @member {string} name The branch name
* @member {object} commit
* @member {string} [commit.sha] The commit SHA
* @member {string} [commit.url] The URL to the commit
*/
export interface Branch {
name: string;
commit: Commit;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the BranchProperties class.
* @constructor
* The branch build core properties
*
* @member {object} [branch]
* @member {string} [branch.name] The branch name
* @member {object} [branch.commit]
* @member {string} [branch.commit.sha] The commit SHA
* @member {string} [branch.commit.url] The URL to the commit
* @member {boolean} [enabled]
*/
export interface BranchProperties {
branch?: Branch;
enabled?: boolean;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the Build class.
* @constructor
* @member {number} id The build ID
* @member {string} buildNumber The build number
* @member {string} queueTime The time the build was queued
* @member {string} [startTime] The time the build was started
* @member {string} [finishTime] The time the build was finished
* @member {string} [lastChangedDate] The time the build status was last
* changed
* @member {string} status The build status
* @member {string} result The build result
* @member {string} sourceBranch The source branch name
* @member {string} sourceVersion The source SHA
*/
export interface Build {
id: number;
buildNumber: string;
queueTime: string;
startTime?: string;
finishTime?: string;
lastChangedDate?: string;
status: string;
result: string;
sourceBranch: string;
sourceVersion: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the BranchStatus class.
* @constructor
* The branch build status
*
* @member {boolean} configured
* @member {object} [lastBuild]
* @member {number} [lastBuild.id] The build ID
* @member {string} [lastBuild.buildNumber] The build number
* @member {string} [lastBuild.queueTime] The time the build was queued
* @member {string} [lastBuild.startTime] The time the build was started
* @member {string} [lastBuild.finishTime] The time the build was finished
* @member {string} [lastBuild.lastChangedDate] The time the build status was
* last changed
* @member {string} [lastBuild.status] The build status
* @member {string} [lastBuild.result] The build result
* @member {string} [lastBuild.sourceBranch] The source branch name
* @member {string} [lastBuild.sourceVersion] The source SHA
*/
export interface BranchStatus {
configured: boolean;
lastBuild?: Build;
/**
* @property Describes unknown properties. The value of an unknown property
* MUST be of type "BranchProperties". Due to valid TS constraints we have
* modeled this as a union of `BranchProperties | any`.
*/
[property: string]: BranchProperties | any;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XcodeBranchConfigurationProperties class.
* @constructor
* Build configuration when Xcode is part of the build steps
*
* @member {string} projectOrWorkspacePath Xcode project/workspace path
* @member {string} [podfilePath] Path to CococaPods file, if present
* @member {string} [cartfilePath] Path to Carthage file, if present
* @member {string} [provisioningProfileEncoded]
* @member {string} [certificateEncoded]
* @member {string} [provisioningProfileFileId]
* @member {string} [certificateFileId]
* @member {string} [provisioningProfileUploadId]
* @member {string} [certificateUploadId]
* @member {string} [certificatePassword]
* @member {string} scheme
* @member {string} xcodeVersion
* @member {string} [provisioningProfileFilename]
* @member {string} [certificateFilename]
* @member {string} [teamId]
* @member {boolean} [automaticSigning]
* @member {string} [xcodeProjectSha] The selected pbxproject hash to the
* repositroy
* @member {string} [archiveConfiguration] The build configuration of the
* target to archive
* @member {string} [targetToArchive] The target id of the selected scheme to
* archive
*/
export interface XcodeBranchConfigurationProperties {
projectOrWorkspacePath: string;
podfilePath?: string;
cartfilePath?: string;
provisioningProfileEncoded?: string;
certificateEncoded?: string;
provisioningProfileFileId?: string;
certificateFileId?: string;
provisioningProfileUploadId?: string;
certificateUploadId?: string;
certificatePassword?: string;
scheme: string;
xcodeVersion: string;
provisioningProfileFilename?: string;
certificateFilename?: string;
teamId?: string;
automaticSigning?: boolean;
xcodeProjectSha?: string;
archiveConfiguration?: string;
targetToArchive?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the JavaScriptBranchConfigurationProperties class.
* @constructor
* Build configuration when React Native, or other JavaScript tech, is part of
* the build steps
*
* @member {string} packageJsonPath Path to package.json file for the main
* project, e.g. "package.json" or "myapp/package.json"
* @member {boolean} [runTests] Whether to run Jest unit tests, via npm test,
* during the build. Default value: true .
* @member {string} [reactNativeVersion] Version of React Native from
* package.json files
*/
export interface JavaScriptBranchConfigurationProperties {
packageJsonPath: string;
runTests?: boolean;
reactNativeVersion?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
InterfaceDeclaration | /**
* @class
* Initializes a new instance of the XamarinBranchConfigurationProperties class.
* @constructor
* Build configuration for Xamarin projects
*
* @member {string} slnPath
* @member {string} isSimBuild
* @member {string} args
* @member {string} configuration
* @member {string} p12File
* @member {string} p12Pwd
* @member {string} provProfile
* @member {string} [monoVersion]
* @member {string} [sdkBundle]
*/
export interface XamarinBranchConfigurationProperties {
slnPath: string;
isSimBuild: string;
args: string;
configuration: string;
p12File: string;
p12Pwd: string;
provProfile: string;
monoVersion?: string;
sdkBundle?: string;
} | AndreyMitsyk/appcenter-cli | src/util/apis/generated/models/index.d.ts | TypeScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.