@pexip-engage-public/graphql 1.1.11 → 1.1.12
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/CHANGELOG.md +7 -0
- package/dist/graphql-env.d.ts +27 -1
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +30 -1
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +3 -1
- package/dist/schema.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/graphql-env.ts +30 -1
- package/src/schema.ts +4 -1
package/dist/schema.d.ts
CHANGED
|
@@ -819,6 +819,7 @@ export type Communication = {
|
|
|
819
819
|
resourceVersion?: Maybe<Scalars['Int']['output']>;
|
|
820
820
|
scheduledAt: Scalars['ISO8601']['output'];
|
|
821
821
|
status: CommunicationStatus;
|
|
822
|
+
uuid: Scalars['String']['output'];
|
|
822
823
|
};
|
|
823
824
|
export type CommunicationChannel = 'EMAIL' | 'TEXT_MESSAGE';
|
|
824
825
|
export type CommunicationEmailEnterpriseSetting = {
|
|
@@ -838,7 +839,7 @@ export type CommunicationSort = {
|
|
|
838
839
|
direction: SortDirection;
|
|
839
840
|
field: SortableCommunicationFields;
|
|
840
841
|
};
|
|
841
|
-
export type CommunicationStatus = 'DELIVERED' | 'DISABLED' | 'INVALID_RECEIVER' | 'NO_RECEIVER' | '
|
|
842
|
+
export type CommunicationStatus = 'DELIVERED' | 'DISABLED' | 'FAILED' | 'INVALID_RECEIVER' | 'NO_RECEIVER' | 'SENT' | 'UNKNOWN';
|
|
842
843
|
export type CommunicationType = 'NOTIFICATION' | 'REMINDER';
|
|
843
844
|
export type Customer = {
|
|
844
845
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
@@ -4367,6 +4368,7 @@ export type QueryWebhookDeliveriesArgs = {
|
|
|
4367
4368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4368
4369
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
4369
4370
|
correlationId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4371
|
+
event?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4370
4372
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4371
4373
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4372
4374
|
resourceId?: InputMaybe<Array<Scalars['String']['input']>>;
|