@droz-js/sdk 0.2.7 → 0.2.9
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/client/helpers.d.ts +11 -1
- package/src/client/helpers.js +33 -3
- package/src/drozchat-ws.d.ts +4 -4
- package/src/drozchat.d.ts +4 -4
- package/src/sdks/drozbot.d.ts +1 -1
- package/src/sdks/drozchat.d.ts +5 -5
- package/src/sdks/droznexo.d.ts +1 -1
- package/src/sdks/mercadolivre.d.ts +1 -1
- package/src/sdks/nucleus.d.ts +1 -1
- package/src/sdks/reclameaqui.d.ts +1 -1
- package/src/sdks/zendesk.d.ts +1 -1
package/package.json
CHANGED
package/src/client/helpers.d.ts
CHANGED
|
@@ -6,4 +6,14 @@ export type GetSdk<Sdk> = (requester: Requester<Sdk>) => Sdk;
|
|
|
6
6
|
export declare function toAuthorizationProvider(type?: string, ...values: string[]): AuthorizationProvider;
|
|
7
7
|
export declare function resolveAuthorization(provider?: AuthorizationProvider): Promise<string>;
|
|
8
8
|
export declare function mapGraphqlResponse<T>(response: ExecutionResult<T> | Error): T;
|
|
9
|
-
|
|
9
|
+
declare class AsyncIterableIteratorMapper<T = any> implements AsyncIterableIterator<T> {
|
|
10
|
+
private from;
|
|
11
|
+
private mapper;
|
|
12
|
+
constructor(from: AsyncIterableIterator<ExecutionResult<T, any>>, mapper: (response: ExecutionResult<T, any>) => T);
|
|
13
|
+
next(...args: [] | [undefined]): Promise<IteratorResult<T, any>>;
|
|
14
|
+
return(value?: any): Promise<IteratorResult<T, any>>;
|
|
15
|
+
throw(e?: any): Promise<IteratorResult<T, any>>;
|
|
16
|
+
[Symbol.asyncIterator](): AsyncIterableIterator<T>;
|
|
17
|
+
}
|
|
18
|
+
export declare function mapAsyncIterableGraphqlResponse<T>(iterable: AsyncIterableIterator<ExecutionResult<T, any>>): AsyncIterableIteratorMapper<T>;
|
|
19
|
+
export {};
|
package/src/client/helpers.js
CHANGED
|
@@ -41,9 +41,39 @@ function mapGraphqlResponse(response) {
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
exports.mapGraphqlResponse = mapGraphqlResponse;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
44
|
+
class AsyncIterableIteratorMapper {
|
|
45
|
+
from;
|
|
46
|
+
mapper;
|
|
47
|
+
constructor(from, mapper) {
|
|
48
|
+
this.from = from;
|
|
49
|
+
this.mapper = mapper;
|
|
47
50
|
}
|
|
51
|
+
async next(...args) {
|
|
52
|
+
const next = await this.from.next(...args);
|
|
53
|
+
return {
|
|
54
|
+
done: next.done,
|
|
55
|
+
value: this.mapper(next.value)
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
async return(value) {
|
|
59
|
+
const ret = await this.from.return(value);
|
|
60
|
+
return {
|
|
61
|
+
done: ret.done,
|
|
62
|
+
value: this.mapper(ret.value)
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
async throw(e) {
|
|
66
|
+
const thr = await this.from.throw(e);
|
|
67
|
+
return {
|
|
68
|
+
done: thr.done,
|
|
69
|
+
value: this.mapper(thr.value)
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
[Symbol.asyncIterator]() {
|
|
73
|
+
return this;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
function mapAsyncIterableGraphqlResponse(iterable) {
|
|
77
|
+
return new AsyncIterableIteratorMapper(iterable, mapGraphqlResponse);
|
|
48
78
|
}
|
|
49
79
|
exports.mapAsyncIterableGraphqlResponse = mapAsyncIterableGraphqlResponse;
|
package/src/drozchat-ws.d.ts
CHANGED
|
@@ -59,14 +59,14 @@ export declare const DrozChatWs: new () => {
|
|
|
59
59
|
}>, options?: unknown): Promise<import("./sdks/drozchat").CloseTicketMutation>;
|
|
60
60
|
onTicketInQueue(variables?: import("./sdks/drozchat").Exact<{
|
|
61
61
|
[key: string]: never;
|
|
62
|
-
}>, options?: unknown):
|
|
62
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketInQueueSubscription>;
|
|
63
63
|
onTicketInProgressMine(variables?: import("./sdks/drozchat").Exact<{
|
|
64
64
|
[key: string]: never;
|
|
65
|
-
}>, options?: unknown):
|
|
65
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketInProgressMineSubscription>;
|
|
66
66
|
onTicketClosed(variables?: import("./sdks/drozchat").Exact<{
|
|
67
67
|
[key: string]: never;
|
|
68
|
-
}>, options?: unknown):
|
|
68
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketClosedSubscription>;
|
|
69
69
|
onTicketMessage(variables: import("./sdks/drozchat").Exact<{
|
|
70
70
|
ticketId: string;
|
|
71
|
-
}>, options?: unknown):
|
|
71
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketMessageSubscription>;
|
|
72
72
|
};
|
package/src/drozchat.d.ts
CHANGED
|
@@ -60,14 +60,14 @@ export declare const DrozChat: new () => {
|
|
|
60
60
|
}>, options?: unknown): Promise<import("./sdks/drozchat").CloseTicketMutation>;
|
|
61
61
|
onTicketInQueue(variables?: import("./sdks/drozchat").Exact<{
|
|
62
62
|
[key: string]: never;
|
|
63
|
-
}>, options?: unknown):
|
|
63
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketInQueueSubscription>;
|
|
64
64
|
onTicketInProgressMine(variables?: import("./sdks/drozchat").Exact<{
|
|
65
65
|
[key: string]: never;
|
|
66
|
-
}>, options?: unknown):
|
|
66
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketInProgressMineSubscription>;
|
|
67
67
|
onTicketClosed(variables?: import("./sdks/drozchat").Exact<{
|
|
68
68
|
[key: string]: never;
|
|
69
|
-
}>, options?: unknown):
|
|
69
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketClosedSubscription>;
|
|
70
70
|
onTicketMessage(variables: import("./sdks/drozchat").Exact<{
|
|
71
71
|
ticketId: string;
|
|
72
|
-
}>, options?: unknown):
|
|
72
|
+
}>, options?: unknown): AsyncIterableIterator<import("./sdks/drozchat").OnTicketMessageSubscription>;
|
|
73
73
|
};
|
package/src/sdks/drozbot.d.ts
CHANGED
|
@@ -175,7 +175,7 @@ export declare const ListDrozBotInstancesDocument = "\n query listDrozBotInst
|
|
|
175
175
|
export declare const CreateDrozBotInstanceDocument = "\n mutation createDrozBotInstance($input: CreateDrozBotInstanceInput!) {\n createDrozBotInstance(input: $input) {\n ...drozbot\n }\n}\n \n fragment drozbot on DrozBotInstance {\n id\n name\n credentialsId\n isTest\n}\n ";
|
|
176
176
|
export declare const UpdateDrozBotInstanceDocument = "\n mutation updateDrozBotInstance($input: UpdateDrozBotInstanceInput!) {\n updateDrozBotInstance(input: $input) {\n ...drozbot\n }\n}\n \n fragment drozbot on DrozBotInstance {\n id\n name\n credentialsId\n isTest\n}\n ";
|
|
177
177
|
export declare const RemoveDrozBotInstanceDocument = "\n mutation removeDrozBotInstance($input: RemoveDrozBotInstanceInput!) {\n removeDrozBotInstance(input: $input) {\n ...drozbot\n }\n}\n \n fragment drozbot on DrozBotInstance {\n id\n name\n credentialsId\n isTest\n}\n ";
|
|
178
|
-
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> |
|
|
178
|
+
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
|
|
179
179
|
export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
180
180
|
getDrozBotInstance(variables: GetDrozBotInstanceQueryVariables, options?: C): Promise<GetDrozBotInstanceQuery>;
|
|
181
181
|
listDrozBotInstances(variables?: ListDrozBotInstancesQueryVariables, options?: C): Promise<ListDrozBotInstancesQuery>;
|
package/src/sdks/drozchat.d.ts
CHANGED
|
@@ -496,7 +496,7 @@ export declare const OnTicketInQueueDocument = "\n subscription onTicketInQue
|
|
|
496
496
|
export declare const OnTicketInProgressMineDocument = "\n subscription onTicketInProgressMine {\n onTicketInProgressMine {\n ticket {\n ...ticket\n }\n action\n }\n}\n \n fragment ticket on Ticket {\n id\n state\n status\n priority\n assignee {\n ...agent\n }\n customer {\n ...customer\n }\n messagesCount\n lastMessage\n lastMessageAt\n unreadMessagesCount\n createdAt\n updatedAt\n}\n \n fragment agent on Agent {\n id\n name\n email\n}\n \n\n fragment customer on Customer {\n id\n name\n email\n createdAt\n updatedAt\n}\n ";
|
|
497
497
|
export declare const OnTicketClosedDocument = "\n subscription onTicketClosed {\n onTicketClosed {\n ticket {\n ...ticket\n }\n action\n }\n}\n \n fragment ticket on Ticket {\n id\n state\n status\n priority\n assignee {\n ...agent\n }\n customer {\n ...customer\n }\n messagesCount\n lastMessage\n lastMessageAt\n unreadMessagesCount\n createdAt\n updatedAt\n}\n \n fragment agent on Agent {\n id\n name\n email\n}\n \n\n fragment customer on Customer {\n id\n name\n email\n createdAt\n updatedAt\n}\n ";
|
|
498
498
|
export declare const OnTicketMessageDocument = "\n subscription onTicketMessage($ticketId: ID!) {\n onTicketMessage(ticketId: $ticketId) {\n message {\n ...ticketMessage\n }\n action\n }\n}\n \n fragment ticketMessage on TicketMessage {\n id\n ticketId\n sentBy\n type\n contentType\n body\n createdAt\n updatedAt\n}\n ";
|
|
499
|
-
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> |
|
|
499
|
+
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
|
|
500
500
|
export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
501
501
|
createCustomer(variables: CreateCustomerMutationVariables, options?: C): Promise<CreateCustomerMutation>;
|
|
502
502
|
updateCustomer(variables: UpdateCustomerMutationVariables, options?: C): Promise<UpdateCustomerMutation>;
|
|
@@ -515,10 +515,10 @@ export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
|
515
515
|
assignTicketMyself(variables: AssignTicketMyselfMutationVariables, options?: C): Promise<AssignTicketMyselfMutation>;
|
|
516
516
|
unassignTicket(variables: UnassignTicketMutationVariables, options?: C): Promise<UnassignTicketMutation>;
|
|
517
517
|
closeTicket(variables: CloseTicketMutationVariables, options?: C): Promise<CloseTicketMutation>;
|
|
518
|
-
onTicketInQueue(variables?: OnTicketInQueueSubscriptionVariables, options?: C):
|
|
519
|
-
onTicketInProgressMine(variables?: OnTicketInProgressMineSubscriptionVariables, options?: C):
|
|
520
|
-
onTicketClosed(variables?: OnTicketClosedSubscriptionVariables, options?: C):
|
|
521
|
-
onTicketMessage(variables: OnTicketMessageSubscriptionVariables, options?: C):
|
|
518
|
+
onTicketInQueue(variables?: OnTicketInQueueSubscriptionVariables, options?: C): AsyncIterableIterator<OnTicketInQueueSubscription>;
|
|
519
|
+
onTicketInProgressMine(variables?: OnTicketInProgressMineSubscriptionVariables, options?: C): AsyncIterableIterator<OnTicketInProgressMineSubscription>;
|
|
520
|
+
onTicketClosed(variables?: OnTicketClosedSubscriptionVariables, options?: C): AsyncIterableIterator<OnTicketClosedSubscription>;
|
|
521
|
+
onTicketMessage(variables: OnTicketMessageSubscriptionVariables, options?: C): AsyncIterableIterator<OnTicketMessageSubscription>;
|
|
522
522
|
};
|
|
523
523
|
export type Sdk = ReturnType<typeof getSdk>;
|
|
524
524
|
export declare const serviceName = "@droz/drozchat";
|
package/src/sdks/droznexo.d.ts
CHANGED
|
@@ -206,7 +206,7 @@ export declare const ListAgentsDocument = "\n query listAgents($next: Base64)
|
|
|
206
206
|
export declare const GetAgentDocument = "\n query getAgent($id: ID!) {\n getAgent(id: $id) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n groupIds\n createdAt\n updatedAt\n groups {\n ...agentGroup\n }\n}\n \n fragment agentGroup on AgentGroup {\n id\n name\n createdAt\n updatedAt\n}\n ";
|
|
207
207
|
export declare const CreateAgentGroupDocument = "\n mutation createAgentGroup($input: CreateAgentGroupInput!) {\n createAgentGroup(input: $input) {\n ...agentGroup\n }\n}\n \n fragment agentGroup on AgentGroup {\n id\n name\n createdAt\n updatedAt\n}\n ";
|
|
208
208
|
export declare const ListAgentGroupsDocument = "\n query listAgentGroups($next: Base64) {\n listAgentGroups(next: $next) {\n pageInfo {\n hasNext\n next\n }\n nodes {\n ...agentGroup\n }\n }\n}\n \n fragment agentGroup on AgentGroup {\n id\n name\n createdAt\n updatedAt\n}\n ";
|
|
209
|
-
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> |
|
|
209
|
+
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
|
|
210
210
|
export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
211
211
|
createAgent(variables: CreateAgentMutationVariables, options?: C): Promise<CreateAgentMutation>;
|
|
212
212
|
listAgents(variables?: ListAgentsQueryVariables, options?: C): Promise<ListAgentsQuery>;
|
|
@@ -179,7 +179,7 @@ export declare const ListMercadoLivreInstancesDocument = "\n query listMercad
|
|
|
179
179
|
export declare const CreateMercadoLivreInstanceDocument = "\n mutation createMercadoLivreInstance($input: CreateMercadoLivreInstanceInput!) {\n createMercadoLivreInstance(input: $input) {\n ...reclameAquiInstance\n }\n}\n \n fragment reclameAquiInstance on MercadoLivreInstance {\n id\n name\n credentialId\n cronJobId\n}\n ";
|
|
180
180
|
export declare const UpdateMercadoLivreInstanceDocument = "\n mutation updateMercadoLivreInstance($input: UpdateMercadoLivreInstanceInput!) {\n updateMercadoLivreInstance(input: $input) {\n ...reclameAquiInstance\n }\n}\n \n fragment reclameAquiInstance on MercadoLivreInstance {\n id\n name\n credentialId\n cronJobId\n}\n ";
|
|
181
181
|
export declare const RemoveMercadoLivreInstanceDocument = "\n mutation removeMercadoLivreInstance($input: RemoveMercadoLivreInstanceInput!) {\n removeMercadoLivreInstance(input: $input) {\n ...reclameAquiInstance\n }\n}\n \n fragment reclameAquiInstance on MercadoLivreInstance {\n id\n name\n credentialId\n cronJobId\n}\n ";
|
|
182
|
-
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> |
|
|
182
|
+
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
|
|
183
183
|
export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
184
184
|
getMercadoLivreInstance(variables: GetMercadoLivreInstanceQueryVariables, options?: C): Promise<GetMercadoLivreInstanceQuery>;
|
|
185
185
|
listMercadoLivreInstances(variables?: ListMercadoLivreInstancesQueryVariables, options?: C): Promise<ListMercadoLivreInstancesQuery>;
|
package/src/sdks/nucleus.d.ts
CHANGED
|
@@ -733,7 +733,7 @@ export declare const PublishStateMachineConfigDocument = "\n mutation publish
|
|
|
733
733
|
export declare const CreateStateMachineConfigStateDocument = "\n mutation createStateMachineConfigState($input: CreateStateMachineConfigStateInput!) {\n createStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
|
|
734
734
|
export declare const UpdateStateMachineConfigStateDocument = "\n mutation updateStateMachineConfigState($input: UpdateStateMachineConfigStateInput!) {\n updateStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
|
|
735
735
|
export declare const RemoveStateMachineConfigStateDocument = "\n mutation removeStateMachineConfigState($input: RemoveStateMachineConfigStateInput!) {\n removeStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
|
|
736
|
-
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> |
|
|
736
|
+
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
|
|
737
737
|
export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
738
738
|
getApp(variables: GetAppQueryVariables, options?: C): Promise<GetAppQuery>;
|
|
739
739
|
listApps(variables?: ListAppsQueryVariables, options?: C): Promise<ListAppsQuery>;
|
|
@@ -173,7 +173,7 @@ export declare const ListReclameAquiInstancesDocument = "\n query listReclame
|
|
|
173
173
|
export declare const CreateReclameAquiInstanceDocument = "\n mutation createReclameAquiInstance($input: CreateReclameAquiInstanceInput!) {\n createReclameAquiInstance(input: $input) {\n ...reclameAquiInstance\n }\n}\n \n fragment reclameAquiInstance on ReclameAquiInstance {\n id\n name\n credentialId\n cronJobId\n}\n ";
|
|
174
174
|
export declare const UpdateReclameAquiInstanceDocument = "\n mutation updateReclameAquiInstance($input: UpdateReclameAquiInstanceInput!) {\n updateReclameAquiInstance(input: $input) {\n ...reclameAquiInstance\n }\n}\n \n fragment reclameAquiInstance on ReclameAquiInstance {\n id\n name\n credentialId\n cronJobId\n}\n ";
|
|
175
175
|
export declare const RemoveReclameAquiInstanceDocument = "\n mutation removeReclameAquiInstance($input: RemoveReclameAquiInstanceInput!) {\n removeReclameAquiInstance(input: $input) {\n ...reclameAquiInstance\n }\n}\n \n fragment reclameAquiInstance on ReclameAquiInstance {\n id\n name\n credentialId\n cronJobId\n}\n ";
|
|
176
|
-
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> |
|
|
176
|
+
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
|
|
177
177
|
export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
178
178
|
getReclameAquiInstance(variables: GetReclameAquiInstanceQueryVariables, options?: C): Promise<GetReclameAquiInstanceQuery>;
|
|
179
179
|
listReclameAquiInstances(variables?: ListReclameAquiInstancesQueryVariables, options?: C): Promise<ListReclameAquiInstancesQuery>;
|
package/src/sdks/zendesk.d.ts
CHANGED
|
@@ -190,7 +190,7 @@ export declare const ListZendeskInstancesDocument = "\n query listZendeskInst
|
|
|
190
190
|
export declare const CreateZendeskInstanceDocument = "\n mutation createZendeskInstance($input: CreateZendeskInstanceInput!) {\n createZendeskInstance(input: $input) {\n ...zendeskInstance\n }\n}\n \n fragment zendeskInstance on ZendeskInstance {\n id\n name\n domain\n credentialId\n}\n ";
|
|
191
191
|
export declare const UpdateZendeskInstanceDocument = "\n mutation updateZendeskInstance($input: UpdateZendeskInstanceInput!) {\n updateZendeskInstance(input: $input) {\n ...zendeskInstance\n }\n}\n \n fragment zendeskInstance on ZendeskInstance {\n id\n name\n domain\n credentialId\n}\n ";
|
|
192
192
|
export declare const RemoveZendeskInstanceDocument = "\n mutation removeZendeskInstance($input: RemoveZendeskInstanceInput!) {\n removeZendeskInstance(input: $input) {\n ...zendeskInstance\n }\n}\n \n fragment zendeskInstance on ZendeskInstance {\n id\n name\n domain\n credentialId\n}\n ";
|
|
193
|
-
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> |
|
|
193
|
+
export type Requester<C = {}, E = unknown> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
|
|
194
194
|
export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
195
195
|
getZendeskInstance(variables: GetZendeskInstanceQueryVariables, options?: C): Promise<GetZendeskInstanceQuery>;
|
|
196
196
|
listZendeskInstances(variables?: ListZendeskInstancesQueryVariables, options?: C): Promise<ListZendeskInstancesQuery>;
|