@worknice/js-sdk 0.11.18 → 0.11.20

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.
@@ -239,7 +239,6 @@ type Assignment = {
239
239
  onboardingIndex?: Maybe<Scalars['Int']['output']>;
240
240
  /** The person who is submitting this assignment. */
241
241
  owner?: Maybe<Person>;
242
- paperworkSummary?: Maybe<PaperworkSummary>;
243
242
  processedAt?: Maybe<Scalars['DateTime']['output']>;
244
243
  /** The person who processed this assignment. */
245
244
  processor?: Maybe<Person>;
@@ -3492,6 +3491,7 @@ type MutationUpdateQuestionnaireTemplateArgs = {
3492
3491
  type MutationUpdateReviewCycleArgs = {
3493
3492
  name?: InputMaybe<Scalars['String']['input']>;
3494
3493
  reviewCycleId: Scalars['ID']['input'];
3494
+ savedOverviewQuestionId?: InputMaybe<Scalars['ID']['input']>;
3495
3495
  };
3496
3496
  type MutationUpdateSavedQuestionArgs = {
3497
3497
  description?: InputMaybe<Scalars['Markdown']['input']>;
@@ -3828,7 +3828,7 @@ declare enum PaperworkSummaryStatus {
3828
3828
  type PaperworkTemplate = {
3829
3829
  archived: Scalars['Boolean']['output'];
3830
3830
  assignmentType: AssignmentType;
3831
- assignments: Array<Assignment>;
3831
+ assignments: Array<PaperworkAssignment>;
3832
3832
  bundledTemplates: Array<BundledTemplate>;
3833
3833
  createdAt: Scalars['DateTime']['output'];
3834
3834
  id: Scalars['ID']['output'];
@@ -4804,6 +4804,7 @@ type ReviewCycle = {
4804
4804
  name: Scalars['String']['output'];
4805
4805
  org: Org;
4806
4806
  reviews: Array<StandardReview>;
4807
+ savedOverviewQuestion?: Maybe<SavedQuestion>;
4807
4808
  updatedAt: Scalars['DateTime']['output'];
4808
4809
  };
4809
4810
  type ReviewCycleReviewsArgs = {
@@ -4956,7 +4957,6 @@ type StandardReview = Assignment & {
4956
4957
  notifications: Array<Notification>;
4957
4958
  onboardingIndex?: Maybe<Scalars['Int']['output']>;
4958
4959
  owner?: Maybe<Person>;
4959
- paperworkSummary?: Maybe<PaperworkSummary>;
4960
4960
  processedAt?: Maybe<Scalars['DateTime']['output']>;
4961
4961
  processor?: Maybe<Person>;
4962
4962
  questions: Array<StandardReviewQuestion>;
@@ -5033,8 +5033,6 @@ type StandardReviewTemplate = Template & {
5033
5033
  id: Scalars['ID']['output'];
5034
5034
  name: Scalars['String']['output'];
5035
5035
  org: Org;
5036
- /** Paperwork summaries are only returned for paperwork that can be summarised (the person has at least one assignment for the template or the template is marked as required for the person). */
5037
- paperworkSummaries: Array<PaperworkSummary>;
5038
5036
  questions: Array<StandardReviewTemplateQuestion>;
5039
5037
  reviewerInstructions?: Maybe<Scalars['Markdown']['output']>;
5040
5038
  subjectInstructions?: Maybe<Scalars['Markdown']['output']>;
@@ -5103,7 +5101,6 @@ type Task = Assignment & {
5103
5101
  notifications: Array<Notification>;
5104
5102
  onboardingIndex?: Maybe<Scalars['Int']['output']>;
5105
5103
  owner?: Maybe<Person>;
5106
- paperworkSummary?: Maybe<PaperworkSummary>;
5107
5104
  processedAt?: Maybe<Scalars['DateTime']['output']>;
5108
5105
  processor?: Maybe<Person>;
5109
5106
  responsible?: Maybe<Person>;
@@ -5129,8 +5126,6 @@ type TaskTemplate = Template & {
5129
5126
  id: Scalars['ID']['output'];
5130
5127
  name: Scalars['String']['output'];
5131
5128
  org: Org;
5132
- /** Paperwork summaries are only returned for paperwork that can be summarised (the person has at least one assignment for the template or the template is marked as required for the person). */
5133
- paperworkSummaries: Array<PaperworkSummary>;
5134
5129
  /** @deprecated Unused. */
5135
5130
  templateParameters: Array<TemplateParameter>;
5136
5131
  updatedAt: Scalars['DateTime']['output'];