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} [organizationInvit...
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 FeaturePat...
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 frien...
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} [organizationInvit...
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; ...
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...
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 ...
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] T...
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 ori...
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...
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 encrypte...
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} nam...
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 * @mem...
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 representati...
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} [azureSubs...
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 pas...
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...
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...
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} [e...
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. * Possib...
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 { ...
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 ...
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 { org...
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 th...
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...
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...
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 g...
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, ...
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 * @...
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} ori...
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 u...
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: strin...
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} [o...
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 int...
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...
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; nam...
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 tea...
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; me...
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 ...
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 {st...
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: s...
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', '...
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 UserProfileResponseManageme...
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 { i...
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 V...
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 * @m...
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 ...
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 X...
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] * @m...
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 prese...
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; ...
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 pro...
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: ...
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[]; java...
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...
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 ...
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} ...
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]...
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...
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 * @m...
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...
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 {stri...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript