cf-service-sdk 0.1.44 → 0.1.45

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.
@@ -6069,6 +6069,7 @@ export declare enum UserBusinessProfileStateChoices {
6069
6069
  }
6070
6070
  /** UserProfileInput for updating user profile */
6071
6071
  export type UserProfileInput = {
6072
+ desktopNotificationsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
6072
6073
  emailSignature?: InputMaybe<Scalars['String']['input']>;
6073
6074
  firstName?: InputMaybe<Scalars['String']['input']>;
6074
6075
  lastName?: InputMaybe<Scalars['String']['input']>;
@@ -6080,6 +6081,7 @@ export type UserProfileInput = {
6080
6081
  export type UserProfileType = {
6081
6082
  __typename?: 'UserProfileType';
6082
6083
  createdAt?: Maybe<Scalars['DateTime']['output']>;
6084
+ desktopNotificationsEnabled?: Maybe<Scalars['Boolean']['output']>;
6083
6085
  emailSignature?: Maybe<Scalars['String']['output']>;
6084
6086
  firstName?: Maybe<Scalars['String']['output']>;
6085
6087
  id?: Maybe<Scalars['ID']['output']>;
@@ -17257,6 +17259,7 @@ export type UpdateUserProfileMutation = {
17257
17259
  updatedAt?: any | null;
17258
17260
  emailSignature?: string | null;
17259
17261
  syncTasksToCalendar?: boolean | null;
17262
+ desktopNotificationsEnabled?: boolean | null;
17260
17263
  user?: {
17261
17264
  __typename?: 'UserType';
17262
17265
  id?: string | null;
@@ -30592,6 +30595,7 @@ export type UserProfileQuery = {
30592
30595
  updatedAt?: any | null;
30593
30596
  emailSignature?: string | null;
30594
30597
  syncTasksToCalendar?: boolean | null;
30598
+ desktopNotificationsEnabled?: boolean | null;
30595
30599
  user?: {
30596
30600
  __typename?: 'UserType';
30597
30601
  id?: string | null;
@@ -13777,6 +13777,7 @@ exports.UpdateUserProfileDocument = (0, client_1.gql) `
13777
13777
  picture
13778
13778
  }
13779
13779
  syncTasksToCalendar
13780
+ desktopNotificationsEnabled
13780
13781
  }
13781
13782
  success
13782
13783
  message
@@ -28798,6 +28799,7 @@ exports.UserProfileDocument = (0, client_1.gql) `
28798
28799
  picture
28799
28800
  }
28800
28801
  syncTasksToCalendar
28802
+ desktopNotificationsEnabled
28801
28803
  }
28802
28804
  }
28803
28805
  `;
package/dist/mutations.js CHANGED
@@ -7047,6 +7047,7 @@ mutation UpdateUserProfile($input: UserProfileInput!) {
7047
7047
  picture
7048
7048
  }
7049
7049
  syncTasksToCalendar
7050
+ desktopNotificationsEnabled
7050
7051
  }
7051
7052
  success
7052
7053
  message
package/dist/queries.js CHANGED
@@ -11846,6 +11846,7 @@ query UserProfile {
11846
11846
  picture
11847
11847
  }
11848
11848
  syncTasksToCalendar
11849
+ desktopNotificationsEnabled
11849
11850
  }
11850
11851
  }`;
11851
11852
  exports.ACCOUNT_PROFILE = (0, client_1.gql) `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.44",
3
+ "version": "0.1.45",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",