@kanda-libs/ks-schema 1.0.105 → 1.0.106

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.
@@ -56,6 +56,7 @@ import { PutMeRequestFunction } from "./putMe";
56
56
  import { PutPaymentRequestFunction } from "./putPayment";
57
57
  import { PutSubscriptionRequestFunction } from "./putSubscription";
58
58
  import { QuoteCreditRequestFunction } from "./quoteCredit";
59
+ import { ResendJobRequestFunction } from "./resendJob";
59
60
  import { RunnerRequestFunction } from "./runner";
60
61
  import { SendJobRequestFunction } from "./sendJob";
61
62
  import { SignCreditRequestFunction } from "./signCredit";
@@ -2926,6 +2927,193 @@ export declare const operations: {
2926
2927
  readonly Accept: "application/json";
2927
2928
  };
2928
2929
  };
2930
+ readonly resendJob: {
2931
+ readonly path: "/api/job/{id}/resend";
2932
+ readonly method: "post";
2933
+ readonly responses: {
2934
+ readonly "200": {
2935
+ readonly _tag: "JsonResponse";
2936
+ readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2937
+ title: import("io-ts").StringC;
2938
+ deposit_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_deposit">, import("io-ts").LiteralC<"partial_deposit">, import("io-ts").LiteralC<"fixed_deposit">]>;
2939
+ deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2940
+ amount: import("io-ts").NumberC;
2941
+ }>, import("io-ts").PartialC<{
2942
+ currency: import("io-ts").LiteralC<"GBP">;
2943
+ }>]>;
2944
+ job_items: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2945
+ title: import("io-ts").StringC;
2946
+ quantity: import("io-ts").NumberC;
2947
+ price: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2948
+ amount: import("io-ts").NumberC;
2949
+ }>, import("io-ts").PartialC<{
2950
+ currency: import("io-ts").LiteralC<"GBP">;
2951
+ }>]>;
2952
+ vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2953
+ amount: import("io-ts").NumberC;
2954
+ }>, import("io-ts").PartialC<{
2955
+ currency: import("io-ts").LiteralC<"GBP">;
2956
+ }>]>;
2957
+ }>, import("io-ts").PartialC<{
2958
+ description: import("io-ts").StringC;
2959
+ vat_rate: import("io-ts").UnionC<[import("io-ts").LiteralC<"vat_not_set">, import("io-ts").LiteralC<"exempted">, import("io-ts").LiteralC<"0%">, import("io-ts").LiteralC<"5%">, import("io-ts").LiteralC<"20%">, import("io-ts").LiteralC<"custom">]>;
2960
+ quote_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2961
+ name: import("io-ts").StringC;
2962
+ }>, import("io-ts").PartialC<{
2963
+ id: import("io-ts").StringC;
2964
+ cid: import("io-ts").StringC;
2965
+ oid: import("io-ts").StringC;
2966
+ aid: import("io-ts").StringC;
2967
+ content: import("io-ts").StringC;
2968
+ mimetype: import("io-ts").StringC;
2969
+ metadata: import("io-ts").TypeC<{
2970
+ liveness: import("io-ts").BooleanC;
2971
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
2972
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
2973
+ }>;
2974
+ }>]>;
2975
+ style: import("io-ts").UnionC<[import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
2976
+ }>]>>;
2977
+ }>, import("io-ts").PartialC<{
2978
+ id: import("io-ts").StringC;
2979
+ cid: import("io-ts").StringC;
2980
+ oid: import("io-ts").StringC;
2981
+ aid: import("io-ts").StringC;
2982
+ description: import("io-ts").StringC;
2983
+ customer: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2984
+ first_name: import("io-ts").StringC;
2985
+ last_name: import("io-ts").StringC;
2986
+ email: import("io-ts").StringC;
2987
+ phone: import("io-ts").StringC;
2988
+ }>, import("io-ts").PartialC<{
2989
+ address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
2990
+ line_1: import("io-ts").StringC;
2991
+ city: import("io-ts").StringC;
2992
+ country: import("io-ts").StringC;
2993
+ postcode: import("io-ts").StringC;
2994
+ }>, import("io-ts").PartialC<{
2995
+ building_number: import("io-ts").StringC;
2996
+ building_name: import("io-ts").StringC;
2997
+ line_2: import("io-ts").StringC;
2998
+ county: import("io-ts").StringC;
2999
+ months_at_address: import("io-ts").NumberC;
3000
+ }>]>;
3001
+ }>]>;
3002
+ total: import("io-ts").PartialC<{
3003
+ amount_vat_inclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3004
+ amount: import("io-ts").NumberC;
3005
+ }>, import("io-ts").PartialC<{
3006
+ currency: import("io-ts").LiteralC<"GBP">;
3007
+ }>]>;
3008
+ amount_vat_exclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3009
+ amount: import("io-ts").NumberC;
3010
+ }>, import("io-ts").PartialC<{
3011
+ currency: import("io-ts").LiteralC<"GBP">;
3012
+ }>]>;
3013
+ amount_vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3014
+ amount: import("io-ts").NumberC;
3015
+ }>, import("io-ts").PartialC<{
3016
+ currency: import("io-ts").LiteralC<"GBP">;
3017
+ }>]>;
3018
+ }>;
3019
+ notes: import("io-ts").ArrayC<import("io-ts").StringC>;
3020
+ archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
3021
+ status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
3022
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
3023
+ checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
3024
+ finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
3025
+ customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3026
+ checkout_option: import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>;
3027
+ finance_option: import("io-ts").StringC;
3028
+ }>, import("io-ts").PartialC<{
3029
+ deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3030
+ amount: import("io-ts").NumberC;
3031
+ }>, import("io-ts").PartialC<{
3032
+ currency: import("io-ts").LiteralC<"GBP">;
3033
+ }>]>;
3034
+ }>]>;
3035
+ payments: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3036
+ payment_option: import("io-ts").TypeC<{
3037
+ payment_method: import("io-ts").UnionC<[import("io-ts").LiteralC<"cash">, import("io-ts").LiteralC<"card">, import("io-ts").LiteralC<"loan">]>;
3038
+ amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3039
+ amount: import("io-ts").NumberC;
3040
+ }>, import("io-ts").PartialC<{
3041
+ currency: import("io-ts").LiteralC<"GBP">;
3042
+ }>]>;
3043
+ }>;
3044
+ }>, import("io-ts").PartialC<{
3045
+ id: import("io-ts").StringC;
3046
+ cid: import("io-ts").StringC;
3047
+ oid: import("io-ts").StringC;
3048
+ aid: import("io-ts").StringC;
3049
+ kid: import("io-ts").StringC;
3050
+ kind: import("io-ts").UnionC<[import("io-ts").LiteralC<"job">, import("io-ts").LiteralC<"charge">]>;
3051
+ xid: import("io-ts").StringC;
3052
+ xref: import("io-ts").StringC;
3053
+ status: import("io-ts").UnionC<[import("io-ts").LiteralC<"unpaid">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"paid">, import("io-ts").LiteralC<"disputed">, import("io-ts").LiteralC<"cancelled">, import("io-ts").LiteralC<"refunded">]>;
3054
+ metadata: import("io-ts").TypeC<{
3055
+ liveness: import("io-ts").BooleanC;
3056
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3057
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3058
+ }>;
3059
+ }>]>>;
3060
+ sat_note_timeline: import("io-ts").PartialC<{
3061
+ sent_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3062
+ viewed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3063
+ signed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3064
+ }>;
3065
+ sat_note: import("io-ts").TypeC<{
3066
+ q_pressure: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
3067
+ q_easiness: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
3068
+ q_availability: import("io-ts").UnionC<[import("io-ts").LiteralC<"The installer told me when quoting me">, import("io-ts").LiteralC<"I saw it advertised by the installer">, import("io-ts").LiteralC<"I found out when the installer sent me a link via Kanda">]>;
3069
+ q_application: import("io-ts").UnionC<[import("io-ts").LiteralC<"I completed the application myself">, import("io-ts").LiteralC<"Someone completed the appliation on my behalf">]>;
3070
+ q_advice: import("io-ts").UnionC<[import("io-ts").LiteralC<"They just sent me a link to apply">, import("io-ts").LiteralC<"They told me what rates where available">, import("io-ts").LiteralC<"They helped me work out my potential repayments">, import("io-ts").LiteralC<"They completed the application for me">]>;
3071
+ signature: import("io-ts").TypeC<{
3072
+ signed: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
3073
+ fingerprint: import("io-ts").StringC;
3074
+ }>;
3075
+ certificate: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3076
+ name: import("io-ts").StringC;
3077
+ }>, import("io-ts").PartialC<{
3078
+ id: import("io-ts").StringC;
3079
+ cid: import("io-ts").StringC;
3080
+ oid: import("io-ts").StringC;
3081
+ aid: import("io-ts").StringC;
3082
+ content: import("io-ts").StringC;
3083
+ mimetype: import("io-ts").StringC;
3084
+ metadata: import("io-ts").TypeC<{
3085
+ liveness: import("io-ts").BooleanC;
3086
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3087
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3088
+ }>;
3089
+ }>]>;
3090
+ }>;
3091
+ metadata: import("io-ts").TypeC<{
3092
+ liveness: import("io-ts").BooleanC;
3093
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3094
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
3095
+ }>;
3096
+ }>]>;
3097
+ };
3098
+ readonly default: {
3099
+ readonly _tag: "JsonResponse";
3100
+ readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
3101
+ message: import("io-ts").StringC;
3102
+ }>, import("io-ts").PartialC<{
3103
+ code: import("io-ts").NumberC;
3104
+ }>]>;
3105
+ };
3106
+ };
3107
+ readonly parameters: readonly [{
3108
+ readonly _tag: "FormParameter";
3109
+ readonly explode: false;
3110
+ readonly in: "path";
3111
+ readonly name: "id";
3112
+ }];
3113
+ readonly requestDefaultHeaders: {
3114
+ readonly Accept: "application/json";
3115
+ };
3116
+ };
2929
3117
  readonly completeJob: {
2930
3118
  readonly path: "/api/job/{id}/complete";
2931
3119
  readonly method: "post";
@@ -7107,6 +7295,7 @@ export interface OperationRequestFunctionMap {
7107
7295
  putJob: PutJobRequestFunction;
7108
7296
  deleteJob: DeleteJobRequestFunction;
7109
7297
  sendJob: SendJobRequestFunction;
7298
+ resendJob: ResendJobRequestFunction;
7110
7299
  completeJob: CompleteJobRequestFunction;
7111
7300
  archiveJob: ArchiveJobRequestFunction;
7112
7301
  applyJob: ApplyJobRequestFunction;
@@ -7188,6 +7377,7 @@ export declare const jobServiceBuilder: (requestFunctions: OperationRequestFunct
7188
7377
  putJob: PutJobRequestFunction;
7189
7378
  deleteJob: DeleteJobRequestFunction;
7190
7379
  sendJob: SendJobRequestFunction;
7380
+ resendJob: ResendJobRequestFunction;
7191
7381
  completeJob: CompleteJobRequestFunction;
7192
7382
  archiveJob: ArchiveJobRequestFunction;
7193
7383
  applyJob: ApplyJobRequestFunction;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,kBAAkB,EAEnB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAqB,uBAAuB,EAAE,MAAM,YAAY,CAAC;AACxE,OAAO,EAEL,6BAA6B,EAC9B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAEL,gCAAgC,EACjC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,4BAA4B,EAC7B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAEL,2BAA2B,EAC5B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAEL,6BAA6B,EAC9B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAsB,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAC3E,OAAO,EAEL,4BAA4B,EAC7B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAEL,iCAAiC,EAClC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAEL,8BAA8B,EAC/B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAEL,2BAA2B,EAC5B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAAsB,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAC3E,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,2BAA2B,EAC5B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAmB,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,EAAoB,sBAAsB,EAAE,MAAM,WAAW,CAAC;AACrE,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,8BAA8B,EAC/B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAEL,+BAA+B,EAChC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAqB,uBAAuB,EAAE,MAAM,YAAY,CAAC;AACxE,OAAO,EAEL,+BAA+B,EAChC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,2BAA2B,EAC5B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAAmB,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,EAEL,2BAA2B,EAC5B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAEL,gCAAgC,EACjC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAEL,6BAA6B,EAC9B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAe,iBAAiB,EAAE,MAAM,MAAM,CAAC;AACtD,OAAO,EAAmB,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,EAAsB,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAC3E,OAAO,EAEL,kCAAkC,EACnC,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAEL,2BAA2B,EAC5B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAoB,sBAAsB,EAAE,MAAM,WAAW,CAAC;AACrE,OAAO,EAAmB,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,+BAA+B,EAChC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAEL,8BAA8B,EAC/B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAAsB,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAC3E,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAmB,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,EAAkB,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAC/D,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAEL,8BAA8B,EAC/B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAEL,0BAA0B,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAmB,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,EAAoB,sBAAsB,EAAE,MAAM,WAAW,CAAC;AACrE,OAAO,EAAuB,yBAAyB,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAEL,8BAA8B,EAC/B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAEL,6BAA6B,EAC9B,MAAM,kBAAkB,CAAC;AAE1B,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+Db,CAAC;AAEX,MAAM,WAAW,2BAA2B;IAC1C,EAAE,EAAE,iBAAiB,CAAC;IACtB,MAAM,EAAE,qBAAqB,CAAC;IAC9B,KAAK,EAAE,oBAAoB,CAAC;IAC5B,UAAU,EAAE,yBAAyB,CAAC;IACtC,WAAW,EAAE,0BAA0B,CAAC;IACxC,YAAY,EAAE,2BAA2B,CAAC;IAC1C,QAAQ,EAAE,uBAAuB,CAAC;IAClC,UAAU,EAAE,yBAAyB,CAAC;IACtC,YAAY,EAAE,2BAA2B,CAAC;IAC1C,gBAAgB,EAAE,+BAA+B,CAAC;IAClD,MAAM,EAAE,qBAAqB,CAAC;IAC9B,iBAAiB,EAAE,gCAAgC,CAAC;IACpD,YAAY,EAAE,2BAA2B,CAAC;IAC1C,WAAW,EAAE,0BAA0B,CAAC;IACxC,UAAU,EAAE,yBAAyB,CAAC;IACtC,UAAU,EAAE,yBAAyB,CAAC;IACtC,aAAa,EAAE,4BAA4B,CAAC;IAC5C,eAAe,EAAE,8BAA8B,CAAC;IAChD,cAAc,EAAE,6BAA6B,CAAC;IAC9C,OAAO,EAAE,sBAAsB,CAAC;IAChC,OAAO,EAAE,sBAAsB,CAAC;IAChC,MAAM,EAAE,qBAAqB,CAAC;IAC9B,MAAM,EAAE,qBAAqB,CAAC;IAC9B,SAAS,EAAE,wBAAwB,CAAC;IACpC,OAAO,EAAE,sBAAsB,CAAC;IAChC,WAAW,EAAE,0BAA0B,CAAC;IACxC,UAAU,EAAE,yBAAyB,CAAC;IACtC,QAAQ,EAAE,uBAAuB,CAAC;IAClC,MAAM,EAAE,qBAAqB,CAAC;IAC9B,cAAc,EAAE,6BAA6B,CAAC;IAC9C,eAAe,EAAE,8BAA8B,CAAC;IAChD,iBAAiB,EAAE,gCAAgC,CAAC;IACpD,SAAS,EAAE,wBAAwB,CAAC;IACpC,cAAc,EAAE,6BAA6B,CAAC;IAC9C,WAAW,EAAE,0BAA0B,CAAC;IACxC,WAAW,EAAE,0BAA0B,CAAC;IACxC,UAAU,EAAE,yBAAyB,CAAC;IACtC,UAAU,EAAE,yBAAyB,CAAC;IACtC,aAAa,EAAE,4BAA4B,CAAC;IAC5C,WAAW,EAAE,0BAA0B,CAAC;IACxC,UAAU,EAAE,yBAAyB,CAAC;IACtC,UAAU,EAAE,yBAAyB,CAAC;IACtC,SAAS,EAAE,wBAAwB,CAAC;IACpC,SAAS,EAAE,wBAAwB,CAAC;IACpC,YAAY,EAAE,2BAA2B,CAAC;IAC1C,WAAW,EAAE,0BAA0B,CAAC;IACxC,WAAW,EAAE,0BAA0B,CAAC;IACxC,WAAW,EAAE,0BAA0B,CAAC;IACxC,UAAU,EAAE,yBAAyB,CAAC;IACtC,YAAY,EAAE,2BAA2B,CAAC;IAC1C,YAAY,EAAE,2BAA2B,CAAC;IAC1C,WAAW,EAAE,0BAA0B,CAAC;IACxC,WAAW,EAAE,0BAA0B,CAAC;IACxC,cAAc,EAAE,6BAA6B,CAAC;IAC9C,gBAAgB,EAAE,+BAA+B,CAAC;IAClD,gBAAgB,EAAE,+BAA+B,CAAC;IAClD,eAAe,EAAE,8BAA8B,CAAC;IAChD,eAAe,EAAE,8BAA8B,CAAC;IAChD,kBAAkB,EAAE,iCAAiC,CAAC;IACtD,mBAAmB,EAAE,kCAAkC,CAAC;IACxD,eAAe,EAAE,8BAA8B,CAAC;IAChD,MAAM,EAAE,qBAAqB,CAAC;CAC/B;AAED,eAAO,MAAM,uBAAuB,mBAClB,kBAAkB,KACjC,2BAqHD,CAAC;AAEH,eAAO,MAAM,sBAAsB,qBACf,2BAA2B;;;;CAK7C,CAAC;AAEH,eAAO,MAAM,wBAAwB,qBACjB,2BAA2B;;CAG7C,CAAC;AAEH,eAAO,MAAM,yBAAyB,qBAClB,2BAA2B;;CAG7C,CAAC;AAEH,eAAO,MAAM,0BAA0B,qBACnB,2BAA2B;;CAG7C,CAAC;AAEH,eAAO,MAAM,sBAAsB,qBACf,2BAA2B;;;;;CAM7C,CAAC;AAEH,eAAO,MAAM,oBAAoB,qBACb,2BAA2B;;CAG7C,CAAC;AAEH,eAAO,MAAM,4BAA4B,qBACrB,2BAA2B;;CAG7C,CAAC;AAEH,eAAO,MAAM,qBAAqB,qBACd,2BAA2B;;;;;;;;CAS7C,CAAC;AAEH,eAAO,MAAM,iBAAiB,qBACV,2BAA2B;;;;;;;;;;;;;;;;CAiB7C,CAAC;AAEH,eAAO,MAAM,qBAAqB,qBACd,2BAA2B;;;;;;;CAQ7C,CAAC;AAEH,eAAO,MAAM,oBAAoB,qBACb,2BAA2B;;;;;;;;;;CAW7C,CAAC;AAEH,eAAO,MAAM,sBAAsB,qBACf,2BAA2B;;;;;;CAO7C,CAAC;AAEH,eAAO,MAAM,0BAA0B,qBACnB,2BAA2B;;;;;;;CAQ7C,CAAC;AAEH,eAAO,MAAM,qBAAqB,qBACd,2BAA2B;;CAG7C,CAAC;AAEH,eAAO,MAAM,kBAAkB,qBACX,2BAA2B;;CAG7C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
@@ -59,6 +59,7 @@ const putMe_1 = require("./putMe");
59
59
  const putPayment_1 = require("./putPayment");
60
60
  const putSubscription_1 = require("./putSubscription");
61
61
  const quoteCredit_1 = require("./quoteCredit");
62
+ const resendJob_1 = require("./resendJob");
62
63
  const runner_1 = require("./runner");
63
64
  const sendJob_1 = require("./sendJob");
64
65
  const signCredit_1 = require("./signCredit");
@@ -90,6 +91,7 @@ exports.operations = {
90
91
  putJob: putJob_1.putJobOperation,
91
92
  deleteJob: deleteJob_1.deleteJobOperation,
92
93
  sendJob: sendJob_1.sendJobOperation,
94
+ resendJob: resendJob_1.resendJobOperation,
93
95
  completeJob: completeJob_1.completeJobOperation,
94
96
  archiveJob: archiveJob_1.archiveJobOperation,
95
97
  applyJob: applyJob_1.applyJobOperation,
@@ -154,6 +156,7 @@ const requestFunctionsBuilder = (requestAdapter) => ({
154
156
  putJob: (0, runtime_1.requestFunctionBuilder)(exports.operations.putJob, requestAdapter),
155
157
  deleteJob: (0, runtime_1.requestFunctionBuilder)(exports.operations.deleteJob, requestAdapter),
156
158
  sendJob: (0, runtime_1.requestFunctionBuilder)(exports.operations.sendJob, requestAdapter),
159
+ resendJob: (0, runtime_1.requestFunctionBuilder)(exports.operations.resendJob, requestAdapter),
157
160
  completeJob: (0, runtime_1.requestFunctionBuilder)(exports.operations.completeJob, requestAdapter),
158
161
  archiveJob: (0, runtime_1.requestFunctionBuilder)(exports.operations.archiveJob, requestAdapter),
159
162
  applyJob: (0, runtime_1.requestFunctionBuilder)(exports.operations.applyJob, requestAdapter),
@@ -243,6 +246,7 @@ const jobServiceBuilder = (requestFunctions) => ({
243
246
  putJob: requestFunctions.putJob,
244
247
  deleteJob: requestFunctions.deleteJob,
245
248
  sendJob: requestFunctions.sendJob,
249
+ resendJob: requestFunctions.resendJob,
246
250
  completeJob: requestFunctions.completeJob,
247
251
  archiveJob: requestFunctions.archiveJob,
248
252
  applyJob: requestFunctions.applyJob,
@@ -0,0 +1,196 @@
1
+ import type { RequestFunction } from "@openapi-io-ts/runtime";
2
+ import * as schemas from "../components/schemas";
3
+ export declare type ResendJobRequestParameters = {
4
+ id: string;
5
+ };
6
+ export declare const resendJobOperation: {
7
+ readonly path: "/api/job/{id}/resend";
8
+ readonly method: "post";
9
+ readonly responses: {
10
+ readonly "200": {
11
+ readonly _tag: "JsonResponse";
12
+ readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
13
+ title: import("io-ts").StringC;
14
+ deposit_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_deposit">, import("io-ts").LiteralC<"partial_deposit">, import("io-ts").LiteralC<"fixed_deposit">]>;
15
+ deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
16
+ amount: import("io-ts").NumberC;
17
+ }>, import("io-ts").PartialC<{
18
+ currency: import("io-ts").LiteralC<"GBP">;
19
+ }>]>;
20
+ job_items: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
21
+ title: import("io-ts").StringC;
22
+ quantity: import("io-ts").NumberC;
23
+ price: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
24
+ amount: import("io-ts").NumberC;
25
+ }>, import("io-ts").PartialC<{
26
+ currency: import("io-ts").LiteralC<"GBP">;
27
+ }>]>;
28
+ vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
29
+ amount: import("io-ts").NumberC;
30
+ }>, import("io-ts").PartialC<{
31
+ currency: import("io-ts").LiteralC<"GBP">;
32
+ }>]>;
33
+ }>, import("io-ts").PartialC<{
34
+ description: import("io-ts").StringC;
35
+ vat_rate: import("io-ts").UnionC<[import("io-ts").LiteralC<"vat_not_set">, import("io-ts").LiteralC<"exempted">, import("io-ts").LiteralC<"0%">, import("io-ts").LiteralC<"5%">, import("io-ts").LiteralC<"20%">, import("io-ts").LiteralC<"custom">]>;
36
+ quote_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
37
+ name: import("io-ts").StringC;
38
+ }>, import("io-ts").PartialC<{
39
+ id: import("io-ts").StringC;
40
+ cid: import("io-ts").StringC;
41
+ oid: import("io-ts").StringC;
42
+ aid: import("io-ts").StringC;
43
+ content: import("io-ts").StringC;
44
+ mimetype: import("io-ts").StringC;
45
+ metadata: import("io-ts").TypeC<{
46
+ liveness: import("io-ts").BooleanC;
47
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
48
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
49
+ }>;
50
+ }>]>;
51
+ style: import("io-ts").UnionC<[import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
52
+ }>]>>;
53
+ }>, import("io-ts").PartialC<{
54
+ id: import("io-ts").StringC;
55
+ cid: import("io-ts").StringC;
56
+ oid: import("io-ts").StringC;
57
+ aid: import("io-ts").StringC;
58
+ description: import("io-ts").StringC;
59
+ customer: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
60
+ first_name: import("io-ts").StringC;
61
+ last_name: import("io-ts").StringC;
62
+ email: import("io-ts").StringC;
63
+ phone: import("io-ts").StringC;
64
+ }>, import("io-ts").PartialC<{
65
+ address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
66
+ line_1: import("io-ts").StringC;
67
+ city: import("io-ts").StringC;
68
+ country: import("io-ts").StringC;
69
+ postcode: import("io-ts").StringC;
70
+ }>, import("io-ts").PartialC<{
71
+ building_number: import("io-ts").StringC;
72
+ building_name: import("io-ts").StringC;
73
+ line_2: import("io-ts").StringC;
74
+ county: import("io-ts").StringC;
75
+ months_at_address: import("io-ts").NumberC;
76
+ }>]>;
77
+ }>]>;
78
+ total: import("io-ts").PartialC<{
79
+ amount_vat_inclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
80
+ amount: import("io-ts").NumberC;
81
+ }>, import("io-ts").PartialC<{
82
+ currency: import("io-ts").LiteralC<"GBP">;
83
+ }>]>;
84
+ amount_vat_exclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
85
+ amount: import("io-ts").NumberC;
86
+ }>, import("io-ts").PartialC<{
87
+ currency: import("io-ts").LiteralC<"GBP">;
88
+ }>]>;
89
+ amount_vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
90
+ amount: import("io-ts").NumberC;
91
+ }>, import("io-ts").PartialC<{
92
+ currency: import("io-ts").LiteralC<"GBP">;
93
+ }>]>;
94
+ }>;
95
+ notes: import("io-ts").ArrayC<import("io-ts").StringC>;
96
+ archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
97
+ status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
98
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
99
+ checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
100
+ finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
101
+ customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
102
+ checkout_option: import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>;
103
+ finance_option: import("io-ts").StringC;
104
+ }>, import("io-ts").PartialC<{
105
+ deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
106
+ amount: import("io-ts").NumberC;
107
+ }>, import("io-ts").PartialC<{
108
+ currency: import("io-ts").LiteralC<"GBP">;
109
+ }>]>;
110
+ }>]>;
111
+ payments: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
112
+ payment_option: import("io-ts").TypeC<{
113
+ payment_method: import("io-ts").UnionC<[import("io-ts").LiteralC<"cash">, import("io-ts").LiteralC<"card">, import("io-ts").LiteralC<"loan">]>;
114
+ amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
115
+ amount: import("io-ts").NumberC;
116
+ }>, import("io-ts").PartialC<{
117
+ currency: import("io-ts").LiteralC<"GBP">;
118
+ }>]>;
119
+ }>;
120
+ }>, import("io-ts").PartialC<{
121
+ id: import("io-ts").StringC;
122
+ cid: import("io-ts").StringC;
123
+ oid: import("io-ts").StringC;
124
+ aid: import("io-ts").StringC;
125
+ kid: import("io-ts").StringC;
126
+ kind: import("io-ts").UnionC<[import("io-ts").LiteralC<"job">, import("io-ts").LiteralC<"charge">]>;
127
+ xid: import("io-ts").StringC;
128
+ xref: import("io-ts").StringC;
129
+ status: import("io-ts").UnionC<[import("io-ts").LiteralC<"unpaid">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"paid">, import("io-ts").LiteralC<"disputed">, import("io-ts").LiteralC<"cancelled">, import("io-ts").LiteralC<"refunded">]>;
130
+ metadata: import("io-ts").TypeC<{
131
+ liveness: import("io-ts").BooleanC;
132
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
133
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
134
+ }>;
135
+ }>]>>;
136
+ sat_note_timeline: import("io-ts").PartialC<{
137
+ sent_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
138
+ viewed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
139
+ signed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
140
+ }>;
141
+ sat_note: import("io-ts").TypeC<{
142
+ q_pressure: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
143
+ q_easiness: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
144
+ q_availability: import("io-ts").UnionC<[import("io-ts").LiteralC<"The installer told me when quoting me">, import("io-ts").LiteralC<"I saw it advertised by the installer">, import("io-ts").LiteralC<"I found out when the installer sent me a link via Kanda">]>;
145
+ q_application: import("io-ts").UnionC<[import("io-ts").LiteralC<"I completed the application myself">, import("io-ts").LiteralC<"Someone completed the appliation on my behalf">]>;
146
+ q_advice: import("io-ts").UnionC<[import("io-ts").LiteralC<"They just sent me a link to apply">, import("io-ts").LiteralC<"They told me what rates where available">, import("io-ts").LiteralC<"They helped me work out my potential repayments">, import("io-ts").LiteralC<"They completed the application for me">]>;
147
+ signature: import("io-ts").TypeC<{
148
+ signed: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
149
+ fingerprint: import("io-ts").StringC;
150
+ }>;
151
+ certificate: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
152
+ name: import("io-ts").StringC;
153
+ }>, import("io-ts").PartialC<{
154
+ id: import("io-ts").StringC;
155
+ cid: import("io-ts").StringC;
156
+ oid: import("io-ts").StringC;
157
+ aid: import("io-ts").StringC;
158
+ content: import("io-ts").StringC;
159
+ mimetype: import("io-ts").StringC;
160
+ metadata: import("io-ts").TypeC<{
161
+ liveness: import("io-ts").BooleanC;
162
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
163
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
164
+ }>;
165
+ }>]>;
166
+ }>;
167
+ metadata: import("io-ts").TypeC<{
168
+ liveness: import("io-ts").BooleanC;
169
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
170
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
171
+ }>;
172
+ }>]>;
173
+ };
174
+ readonly default: {
175
+ readonly _tag: "JsonResponse";
176
+ readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
177
+ message: import("io-ts").StringC;
178
+ }>, import("io-ts").PartialC<{
179
+ code: import("io-ts").NumberC;
180
+ }>]>;
181
+ };
182
+ };
183
+ readonly parameters: readonly [{
184
+ readonly _tag: "FormParameter";
185
+ readonly explode: false;
186
+ readonly in: "path";
187
+ readonly name: "id";
188
+ }];
189
+ readonly requestDefaultHeaders: {
190
+ readonly Accept: "application/json";
191
+ };
192
+ };
193
+ export declare type ResendJobRequestFunction = RequestFunction<{
194
+ params: ResendJobRequestParameters;
195
+ }, schemas.Job>;
196
+ //# sourceMappingURL=resendJob.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resendJob.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/resendJob.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,eAAe,CACpD;IAAE,MAAM,EAAE,0BAA0B,CAAA;CAAE,EACtC,OAAO,CAAC,GAAG,CACZ,CAAC"}
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.resendJobOperation = void 0;
27
+ const schemas = __importStar(require("../components/schemas"));
28
+ exports.resendJobOperation = {
29
+ path: "/api/job/{id}/resend",
30
+ method: "post",
31
+ responses: {
32
+ "200": { _tag: "JsonResponse", decoder: schemas.Job },
33
+ default: { _tag: "JsonResponse", decoder: schemas.Error },
34
+ },
35
+ parameters: [
36
+ {
37
+ _tag: "FormParameter",
38
+ explode: false,
39
+ in: "path",
40
+ name: "id",
41
+ },
42
+ ],
43
+ requestDefaultHeaders: { Accept: "application/json" },
44
+ };