@squidcloud/client 1.0.52 → 1.0.54

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.
@@ -102,6 +102,7 @@ export interface TriggerConfig {
102
102
  export interface SchedulerConfig {
103
103
  functionName: ServiceFunctionName;
104
104
  cronExpression: string;
105
+ exclusive: boolean;
105
106
  }
106
107
  export interface WebhookConfig {
107
108
  functionName: ServiceFunctionName;
@@ -1,10 +1,12 @@
1
1
  import { ClientId, ClientRequestId, IntegrationId } from './communication.types';
2
2
  import { CollectionName, DocTimestamp, SquidDocId, SquidDocument } from './document.types';
3
3
  import { MutationType } from './mutation.types';
4
+ import { AuthToken } from './context.types';
4
5
  export type MessageId = string;
5
6
  export type MessageFromClientType = 'acknowledge' | 'catchup' | 'kill' | 'acquireLock' | 'releaseLock';
6
7
  interface BaseMessageFromClient {
7
8
  type: MessageFromClientType;
9
+ authToken?: AuthToken;
8
10
  payload?: unknown;
9
11
  }
10
12
  export interface AcknowledgeMessage extends BaseMessageFromClient {