@droz-js/sdk 0.9.25 → 0.9.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/drozadmin.d.ts +3 -0
- package/src/sdks/drozcommons.d.ts +26 -9
- package/src/sdks/drozcommons.js +14 -2
package/package.json
CHANGED
package/src/drozadmin.d.ts
CHANGED
|
@@ -27,6 +27,9 @@ declare const DrozAdmin_base: new (options?: import("./client/http").HttpClientO
|
|
|
27
27
|
listGitRepositories(variables?: import("./sdks/drozcommons").Exact<{
|
|
28
28
|
[key: string]: never;
|
|
29
29
|
}>, options?: unknown): Promise<import("./sdks/drozcommons").ListGitRepositoriesQuery>;
|
|
30
|
+
listDrozServices(variables?: import("./sdks/drozcommons").Exact<{
|
|
31
|
+
[key: string]: never;
|
|
32
|
+
}>, options?: unknown): Promise<import("./sdks/drozcommons").ListDrozServicesQuery>;
|
|
30
33
|
listGitBranches(variables: import("./sdks/drozcommons").Exact<{
|
|
31
34
|
gitRepositoryId: import("./sdks/drozcommons").Scalars["ID"]["input"];
|
|
32
35
|
}>, options?: unknown): Promise<import("./sdks/drozcommons").ListGitBranchesQuery>;
|
|
@@ -155,6 +155,7 @@ export type AwsAccount = {
|
|
|
155
155
|
export type BatchDeployInput = {
|
|
156
156
|
branch: Scalars['String']['input'];
|
|
157
157
|
gitRepository: Scalars['String']['input'];
|
|
158
|
+
services: Array<InputMaybe<Scalars['String']['input']>>;
|
|
158
159
|
tenantIds: Array<Scalars['ID']['input']>;
|
|
159
160
|
};
|
|
160
161
|
export declare enum Can {
|
|
@@ -179,6 +180,7 @@ export type CreateTenantInput = {
|
|
|
179
180
|
export type DeployInput = {
|
|
180
181
|
branch: Scalars['String']['input'];
|
|
181
182
|
gitRepository: Scalars['String']['input'];
|
|
183
|
+
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
182
184
|
tenantId: Scalars['ID']['input'];
|
|
183
185
|
};
|
|
184
186
|
export type Deployment = {
|
|
@@ -189,6 +191,7 @@ export type Deployment = {
|
|
|
189
191
|
gitRepository: Scalars['String']['output'];
|
|
190
192
|
id: Scalars['ID']['output'];
|
|
191
193
|
message?: Maybe<Scalars['String']['output']>;
|
|
194
|
+
services: Array<Maybe<Scalars['String']['output']>>;
|
|
192
195
|
status: DeploymentStatus;
|
|
193
196
|
tenantId: Scalars['ID']['output'];
|
|
194
197
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -216,8 +219,13 @@ export declare enum DeploymentStatus {
|
|
|
216
219
|
export type DestroyInput = {
|
|
217
220
|
branch: Scalars['String']['input'];
|
|
218
221
|
gitRepository: Scalars['String']['input'];
|
|
222
|
+
services: Array<InputMaybe<Scalars['String']['input']>>;
|
|
219
223
|
tenantId: Scalars['ID']['input'];
|
|
220
224
|
};
|
|
225
|
+
export type DrozService = {
|
|
226
|
+
id: Scalars['String']['output'];
|
|
227
|
+
name: Scalars['String']['output'];
|
|
228
|
+
};
|
|
221
229
|
export type GitBranch = {
|
|
222
230
|
name: Scalars['String']['output'];
|
|
223
231
|
};
|
|
@@ -376,6 +384,7 @@ export type Query = {
|
|
|
376
384
|
listAccountParameters?: Maybe<Array<Parameter>>;
|
|
377
385
|
listAccounts: Array<AwsAccount>;
|
|
378
386
|
listDeployments: Array<Deployment>;
|
|
387
|
+
listDrozServices: Array<DrozService>;
|
|
379
388
|
listGitBranches: Array<GitBranch>;
|
|
380
389
|
listGitRepositories: Array<GitRepository>;
|
|
381
390
|
listGlobalParameters?: Maybe<Array<Parameter>>;
|
|
@@ -595,7 +604,7 @@ export type GetAuthInfoQuery = {
|
|
|
595
604
|
cognitoConfig: Pick<CognitoConfig, 'region' | 'userPoolId' | 'userPoolWebClientId'>;
|
|
596
605
|
})>;
|
|
597
606
|
};
|
|
598
|
-
export type DeploymentFragment = Pick<Deployment, 'id' | 'tenantId' | 'command' | 'gitRepository' | 'branch' | 'status' | 'message' | 'deployedVersion' | 'createdAt' | 'updatedAt'>;
|
|
607
|
+
export type DeploymentFragment = Pick<Deployment, 'id' | 'tenantId' | 'command' | 'gitRepository' | 'branch' | 'status' | 'message' | 'services' | 'deployedVersion' | 'createdAt' | 'updatedAt'>;
|
|
599
608
|
export type GitRepositoryFragment = (Pick<GitRepository, 'id' | 'name'> & {
|
|
600
609
|
branches: Array<GitBranchFragment>;
|
|
601
610
|
});
|
|
@@ -606,6 +615,12 @@ export type ListGitRepositoriesQueryVariables = Exact<{
|
|
|
606
615
|
export type ListGitRepositoriesQuery = {
|
|
607
616
|
listGitRepositories: Array<GitRepositoryFragment>;
|
|
608
617
|
};
|
|
618
|
+
export type ListDrozServicesQueryVariables = Exact<{
|
|
619
|
+
[key: string]: never;
|
|
620
|
+
}>;
|
|
621
|
+
export type ListDrozServicesQuery = {
|
|
622
|
+
listDrozServices: Array<Pick<DrozService, 'id' | 'name'>>;
|
|
623
|
+
};
|
|
609
624
|
export type ListGitBranchesQueryVariables = Exact<{
|
|
610
625
|
gitRepositoryId: Scalars['ID']['input'];
|
|
611
626
|
}>;
|
|
@@ -799,7 +814,7 @@ export type LeaveTenantOrganizationMutationVariables = Exact<{
|
|
|
799
814
|
export type LeaveTenantOrganizationMutation = Pick<Mutation, 'leaveTenantOrganization'>;
|
|
800
815
|
export declare const RegionFragmentDoc = "\n fragment region on Region {\n name\n}\n ";
|
|
801
816
|
export declare const AwsAccountFragmentDoc = "\n fragment awsAccount on AwsAccount {\n id\n name\n tenantsCount\n availableRegions {\n ...region\n }\n}\n ";
|
|
802
|
-
export declare const DeploymentFragmentDoc = "\n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
817
|
+
export declare const DeploymentFragmentDoc = "\n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
803
818
|
export declare const GitBranchFragmentDoc = "\n fragment gitBranch on GitBranch {\n name\n}\n ";
|
|
804
819
|
export declare const GitRepositoryFragmentDoc = "\n fragment gitRepository on GitRepository {\n id\n name\n branches {\n ...gitBranch\n }\n}\n ";
|
|
805
820
|
export declare const ParameterFragmentDoc = "\n fragment parameter on Parameter {\n namespace\n name\n value\n type\n}\n ";
|
|
@@ -812,13 +827,14 @@ export declare const GetMeDocument = "\n query getMe {\n getMe {\n id\n
|
|
|
812
827
|
export declare const GetAmplifyConfigDocument = "\n query getAmplifyConfig($forDev: Boolean) {\n amplifyConfig(forDev: $forDev)\n}\n ";
|
|
813
828
|
export declare const GetAuthInfoDocument = "\n query getAuthInfo {\n authInfo {\n authenticationEndpoint\n jwtIssuer\n loginUrl\n logoutUrl\n cognitoConfig {\n region\n userPoolId\n userPoolWebClientId\n }\n }\n}\n ";
|
|
814
829
|
export declare const ListGitRepositoriesDocument = "\n query listGitRepositories {\n listGitRepositories {\n ...gitRepository\n }\n}\n \n fragment gitRepository on GitRepository {\n id\n name\n branches {\n ...gitBranch\n }\n}\n \n\n fragment gitBranch on GitBranch {\n name\n}\n ";
|
|
830
|
+
export declare const ListDrozServicesDocument = "\n query listDrozServices {\n listDrozServices {\n id\n name\n }\n}\n ";
|
|
815
831
|
export declare const ListGitBranchesDocument = "\n query listGitBranches($gitRepositoryId: ID!) {\n listGitBranches(gitRepositoryId: $gitRepositoryId) {\n name\n }\n}\n ";
|
|
816
|
-
export declare const GetDeploymentDocument = "\n query getDeployment($tenantId: ID!, $deploymentId: ID!) {\n getDeployment(tenantId: $tenantId, deploymentId: $deploymentId) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
817
|
-
export declare const ListDeploymentsDocument = "\n query listDeployments($tenantId: ID!, $limit: Int) {\n listDeployments(tenantId: $tenantId, limit: $limit) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
832
|
+
export declare const GetDeploymentDocument = "\n query getDeployment($tenantId: ID!, $deploymentId: ID!) {\n getDeployment(tenantId: $tenantId, deploymentId: $deploymentId) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
833
|
+
export declare const ListDeploymentsDocument = "\n query listDeployments($tenantId: ID!, $limit: Int) {\n listDeployments(tenantId: $tenantId, limit: $limit) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
818
834
|
export declare const DeploymentLogsDocument = "\n query deploymentLogs($tenantId: ID!, $deploymentId: ID!, $next: Base64) {\n deploymentLogs(tenantId: $tenantId, deploymentId: $deploymentId, next: $next) {\n nodes {\n id\n deploymentId\n message\n timestamp\n }\n pageInfo {\n hasNext\n next\n }\n }\n}\n ";
|
|
819
|
-
export declare const DeployDocument = "\n mutation deploy($input: DeployInput!) {\n deploy(input: $input) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
820
|
-
export declare const DestroyDocument = "\n mutation destroy($input: DestroyInput!) {\n destroy(input: $input) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
821
|
-
export declare const BatchDeployDocument = "\n mutation batchDeploy($input: BatchDeployInput!) {\n batchDeploy(input: $input) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
835
|
+
export declare const DeployDocument = "\n mutation deploy($input: DeployInput!) {\n deploy(input: $input) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
836
|
+
export declare const DestroyDocument = "\n mutation destroy($input: DestroyInput!) {\n destroy(input: $input) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
837
|
+
export declare const BatchDeployDocument = "\n mutation batchDeploy($input: BatchDeployInput!) {\n batchDeploy(input: $input) {\n ...deployment\n }\n}\n \n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
822
838
|
export declare const ListTenantParametersDocument = "\n query listTenantParameters($tenantId: String!) {\n listTenantParameters(tenantId: $tenantId) {\n ...parameter\n }\n}\n \n fragment parameter on Parameter {\n namespace\n name\n value\n type\n}\n ";
|
|
823
839
|
export declare const GetTenantParameterDocument = "\n query getTenantParameter($tenantId: String!, $name: String!) {\n getTenantParameter(tenantId: $tenantId, name: $name) {\n ...parameter\n }\n}\n \n fragment parameter on Parameter {\n namespace\n name\n value\n type\n}\n ";
|
|
824
840
|
export declare const ListAccountParametersDocument = "\n query listAccountParameters($accountId: String!) {\n listAccountParameters(accountId: $accountId) {\n ...parameter\n }\n}\n \n fragment parameter on Parameter {\n namespace\n name\n value\n type\n}\n ";
|
|
@@ -832,8 +848,8 @@ export declare const RemoveAccountParameterDocument = "\n mutation removeAcco
|
|
|
832
848
|
export declare const SetGlobalParameterDocument = "\n mutation setGlobalParameter($input: SetGlobalParameterInput!) {\n setGlobalParameter(input: $input) {\n ...parameter\n }\n}\n \n fragment parameter on Parameter {\n namespace\n name\n value\n type\n}\n ";
|
|
833
849
|
export declare const RemoveGlobalParameterDocument = "\n mutation removeGlobalParameter($input: RemoveGlobalParameterInput!) {\n removeGlobalParameter(input: $input) {\n ...parameter\n }\n}\n \n fragment parameter on Parameter {\n namespace\n name\n value\n type\n}\n ";
|
|
834
850
|
export declare const ListServicesDocument = "\n query listServices($tenantId: ID!) {\n listServices(tenantId: $tenantId) {\n ...service\n }\n}\n \n fragment service on Service {\n accountId\n tenantId\n serviceId\n type\n endpoint\n}\n ";
|
|
835
|
-
export declare const GetTenantDocument = "\n query getTenant($tenantId: TenantId!, $withServices: Boolean = true, $withDeployments: Boolean = true) {\n getTenant(tenantId: $tenantId) {\n ...tenant\n services @include(if: $withServices) {\n ...service\n }\n deployments @include(if: $withDeployments) {\n ...deployment\n }\n }\n}\n \n fragment tenant on Tenant {\n accountId\n tenantId\n name\n deployedVersions\n disabled\n createdAt\n updatedAt\n account {\n id\n name\n }\n identityProviders {\n type\n name\n metadataType\n metadataContent\n attributeMapping\n }\n}\n \n\n fragment service on Service {\n accountId\n tenantId\n serviceId\n type\n endpoint\n}\n \n\n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
836
|
-
export declare const ListTenantsDocument = "\n query listTenants($withServices: Boolean = false, $withDeployments: Boolean = false) {\n listTenants {\n ...tenant\n services @include(if: $withServices) {\n ...service\n }\n deployments @include(if: $withDeployments) {\n ...deployment\n }\n }\n}\n \n fragment tenant on Tenant {\n accountId\n tenantId\n name\n deployedVersions\n disabled\n createdAt\n updatedAt\n account {\n id\n name\n }\n identityProviders {\n type\n name\n metadataType\n metadataContent\n attributeMapping\n }\n}\n \n\n fragment service on Service {\n accountId\n tenantId\n serviceId\n type\n endpoint\n}\n \n\n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
851
|
+
export declare const GetTenantDocument = "\n query getTenant($tenantId: TenantId!, $withServices: Boolean = true, $withDeployments: Boolean = true) {\n getTenant(tenantId: $tenantId) {\n ...tenant\n services @include(if: $withServices) {\n ...service\n }\n deployments @include(if: $withDeployments) {\n ...deployment\n }\n }\n}\n \n fragment tenant on Tenant {\n accountId\n tenantId\n name\n deployedVersions\n disabled\n createdAt\n updatedAt\n account {\n id\n name\n }\n identityProviders {\n type\n name\n metadataType\n metadataContent\n attributeMapping\n }\n}\n \n\n fragment service on Service {\n accountId\n tenantId\n serviceId\n type\n endpoint\n}\n \n\n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
852
|
+
export declare const ListTenantsDocument = "\n query listTenants($withServices: Boolean = false, $withDeployments: Boolean = false) {\n listTenants {\n ...tenant\n services @include(if: $withServices) {\n ...service\n }\n deployments @include(if: $withDeployments) {\n ...deployment\n }\n }\n}\n \n fragment tenant on Tenant {\n accountId\n tenantId\n name\n deployedVersions\n disabled\n createdAt\n updatedAt\n account {\n id\n name\n }\n identityProviders {\n type\n name\n metadataType\n metadataContent\n attributeMapping\n }\n}\n \n\n fragment service on Service {\n accountId\n tenantId\n serviceId\n type\n endpoint\n}\n \n\n fragment deployment on Deployment {\n id\n tenantId\n command\n gitRepository\n branch\n status\n message\n services\n deployedVersion\n createdAt\n updatedAt\n}\n ";
|
|
837
853
|
export declare const GetFederationMetadataDocument = "\n query getFederationMetadata($tenantId: TenantId!) {\n getFederationMetadata(tenantId: $tenantId)\n}\n ";
|
|
838
854
|
export declare const SearchSessionsOnTenantDocument = "\n query searchSessionsOnTenant($tenantId: TenantId!, $q: String) {\n searchSessionsOnTenant(tenantId: $tenantId, q: $q)\n}\n ";
|
|
839
855
|
export declare const CreateTenantDocument = "\n mutation createTenant($input: CreateTenantInput!) {\n createTenant(input: $input) {\n ...tenant\n }\n}\n \n fragment tenant on Tenant {\n accountId\n tenantId\n name\n deployedVersions\n disabled\n createdAt\n updatedAt\n account {\n id\n name\n }\n identityProviders {\n type\n name\n metadataType\n metadataContent\n attributeMapping\n }\n}\n ";
|
|
@@ -850,6 +866,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
850
866
|
getAmplifyConfig(variables?: GetAmplifyConfigQueryVariables, options?: C): Promise<GetAmplifyConfigQuery>;
|
|
851
867
|
getAuthInfo(variables?: GetAuthInfoQueryVariables, options?: C): Promise<GetAuthInfoQuery>;
|
|
852
868
|
listGitRepositories(variables?: ListGitRepositoriesQueryVariables, options?: C): Promise<ListGitRepositoriesQuery>;
|
|
869
|
+
listDrozServices(variables?: ListDrozServicesQueryVariables, options?: C): Promise<ListDrozServicesQuery>;
|
|
853
870
|
listGitBranches(variables: ListGitBranchesQueryVariables, options?: C): Promise<ListGitBranchesQuery>;
|
|
854
871
|
getDeployment(variables: GetDeploymentQueryVariables, options?: C): Promise<GetDeploymentQuery>;
|
|
855
872
|
listDeployments(variables: ListDeploymentsQueryVariables, options?: C): Promise<ListDeploymentsQuery>;
|
package/src/sdks/drozcommons.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.
|
|
5
|
-
exports.serviceName = exports.LeaveTenantOrganizationDocument = exports.JoinTenantAsSuperAdminDocument = void 0;
|
|
4
|
+
exports.UpdateTenantDocument = exports.CreateTenantDocument = exports.SearchSessionsOnTenantDocument = exports.GetFederationMetadataDocument = exports.ListTenantsDocument = exports.GetTenantDocument = exports.ListServicesDocument = exports.RemoveGlobalParameterDocument = exports.SetGlobalParameterDocument = exports.RemoveAccountParameterDocument = exports.SetAccountParameterDocument = exports.RemoveTenantParameterDocument = exports.SetTenantParameterDocument = exports.GetGlobalParameterDocument = exports.ListGlobalParametersDocument = exports.GetAccountParameterDocument = exports.ListAccountParametersDocument = exports.GetTenantParameterDocument = exports.ListTenantParametersDocument = exports.BatchDeployDocument = exports.DestroyDocument = exports.DeployDocument = exports.DeploymentLogsDocument = exports.ListDeploymentsDocument = exports.GetDeploymentDocument = exports.ListGitBranchesDocument = exports.ListDrozServicesDocument = exports.ListGitRepositoriesDocument = exports.GetAuthInfoDocument = exports.GetAmplifyConfigDocument = exports.GetMeDocument = exports.UpdateAccountDocument = exports.ListRegionsDocument = exports.ListAccountsDocument = exports.TenantFragmentDoc = exports.ServiceFragmentDoc = exports.ParameterFragmentDoc = exports.GitRepositoryFragmentDoc = exports.GitBranchFragmentDoc = exports.DeploymentFragmentDoc = exports.AwsAccountFragmentDoc = exports.RegionFragmentDoc = exports.Typenames = exports.ParameterType = exports.IdentityProviderType = exports.IdentityProviderSamlMetadataType = exports.DeploymentStatus = exports.DeploymentCommands = exports.Can = exports.AppInstanceStatus = void 0;
|
|
5
|
+
exports.serviceName = exports.LeaveTenantOrganizationDocument = exports.JoinTenantAsSuperAdminDocument = exports.RemoveTenantDocument = void 0;
|
|
6
6
|
exports.getSdk = getSdk;
|
|
7
7
|
var AppInstanceStatus;
|
|
8
8
|
(function (AppInstanceStatus) {
|
|
@@ -79,6 +79,7 @@ exports.DeploymentFragmentDoc = `
|
|
|
79
79
|
branch
|
|
80
80
|
status
|
|
81
81
|
message
|
|
82
|
+
services
|
|
82
83
|
deployedVersion
|
|
83
84
|
createdAt
|
|
84
85
|
updatedAt
|
|
@@ -198,6 +199,14 @@ exports.ListGitRepositoriesDocument = `
|
|
|
198
199
|
}
|
|
199
200
|
${exports.GitRepositoryFragmentDoc}
|
|
200
201
|
${exports.GitBranchFragmentDoc}`;
|
|
202
|
+
exports.ListDrozServicesDocument = `
|
|
203
|
+
query listDrozServices {
|
|
204
|
+
listDrozServices {
|
|
205
|
+
id
|
|
206
|
+
name
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
`;
|
|
201
210
|
exports.ListGitBranchesDocument = `
|
|
202
211
|
query listGitBranches($gitRepositoryId: ID!) {
|
|
203
212
|
listGitBranches(gitRepositoryId: $gitRepositoryId) {
|
|
@@ -441,6 +450,9 @@ function getSdk(requester) {
|
|
|
441
450
|
listGitRepositories(variables, options) {
|
|
442
451
|
return requester(exports.ListGitRepositoriesDocument, variables, options);
|
|
443
452
|
},
|
|
453
|
+
listDrozServices(variables, options) {
|
|
454
|
+
return requester(exports.ListDrozServicesDocument, variables, options);
|
|
455
|
+
},
|
|
444
456
|
listGitBranches(variables, options) {
|
|
445
457
|
return requester(exports.ListGitBranchesDocument, variables, options);
|
|
446
458
|
},
|