@automate.ax/integration-contracts 0.88.4 → 0.88.6
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/dist/close/schemas.d.ts +8 -8
- package/dist/close/schemas.js +8 -8
- package/package.json +2 -2
- package/src/close/schemas.ts +8 -8
package/dist/close/schemas.d.ts
CHANGED
|
@@ -350,23 +350,23 @@ export declare const CLOSE_OPPORTUNITY_PAGE_SCHEMA: z.ZodObject<{
|
|
|
350
350
|
}>;
|
|
351
351
|
}, z.core.$strip>>;
|
|
352
352
|
expectedValueAnnual: z.ZodNumber;
|
|
353
|
-
expectedValueAnnualFormatted: z.ZodString
|
|
353
|
+
expectedValueAnnualFormatted: z.ZodNullable<z.ZodString>;
|
|
354
354
|
expectedValueAnnualized: z.ZodNumber;
|
|
355
|
-
expectedValueAnnualizedFormatted: z.ZodString
|
|
355
|
+
expectedValueAnnualizedFormatted: z.ZodNullable<z.ZodString>;
|
|
356
356
|
expectedValueMonthly: z.ZodNumber;
|
|
357
|
-
expectedValueMonthlyFormatted: z.ZodString
|
|
357
|
+
expectedValueMonthlyFormatted: z.ZodNullable<z.ZodString>;
|
|
358
358
|
expectedValueOneTime: z.ZodNumber;
|
|
359
|
-
expectedValueOneTimeFormatted: z.ZodString
|
|
359
|
+
expectedValueOneTimeFormatted: z.ZodNullable<z.ZodString>;
|
|
360
360
|
hasMore: z.ZodBoolean;
|
|
361
361
|
totalResults: z.ZodNumber;
|
|
362
362
|
totalValueAnnual: z.ZodNumber;
|
|
363
|
-
totalValueAnnualFormatted: z.ZodString
|
|
363
|
+
totalValueAnnualFormatted: z.ZodNullable<z.ZodString>;
|
|
364
364
|
totalValueAnnualized: z.ZodNumber;
|
|
365
|
-
totalValueAnnualizedFormatted: z.ZodString
|
|
365
|
+
totalValueAnnualizedFormatted: z.ZodNullable<z.ZodString>;
|
|
366
366
|
totalValueMonthly: z.ZodNumber;
|
|
367
|
-
totalValueMonthlyFormatted: z.ZodString
|
|
367
|
+
totalValueMonthlyFormatted: z.ZodNullable<z.ZodString>;
|
|
368
368
|
totalValueOneTime: z.ZodNumber;
|
|
369
|
-
totalValueOneTimeFormatted: z.ZodString
|
|
369
|
+
totalValueOneTimeFormatted: z.ZodNullable<z.ZodString>;
|
|
370
370
|
}, z.core.$strip>;
|
|
371
371
|
export declare const CLOSE_TASK_SCHEMA: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
372
372
|
type: z.ZodLiteral<"lead">;
|
package/dist/close/schemas.js
CHANGED
|
@@ -194,23 +194,23 @@ export const CLOSE_OPPORTUNITY_PAGE_SCHEMA = z.object({
|
|
|
194
194
|
countByValuePeriod: z.record(z.string(), z.number().int().nonnegative()),
|
|
195
195
|
data: CLOSE_OPPORTUNITY_SCHEMA.array(),
|
|
196
196
|
expectedValueAnnual: z.number().int(),
|
|
197
|
-
expectedValueAnnualFormatted: z.string(),
|
|
197
|
+
expectedValueAnnualFormatted: z.string().nullable(),
|
|
198
198
|
expectedValueAnnualized: z.number().int(),
|
|
199
|
-
expectedValueAnnualizedFormatted: z.string(),
|
|
199
|
+
expectedValueAnnualizedFormatted: z.string().nullable(),
|
|
200
200
|
expectedValueMonthly: z.number().int(),
|
|
201
|
-
expectedValueMonthlyFormatted: z.string(),
|
|
201
|
+
expectedValueMonthlyFormatted: z.string().nullable(),
|
|
202
202
|
expectedValueOneTime: z.number().int(),
|
|
203
|
-
expectedValueOneTimeFormatted: z.string(),
|
|
203
|
+
expectedValueOneTimeFormatted: z.string().nullable(),
|
|
204
204
|
hasMore: z.boolean(),
|
|
205
205
|
totalResults: z.number().int().nonnegative(),
|
|
206
206
|
totalValueAnnual: z.number().int(),
|
|
207
|
-
totalValueAnnualFormatted: z.string(),
|
|
207
|
+
totalValueAnnualFormatted: z.string().nullable(),
|
|
208
208
|
totalValueAnnualized: z.number().int(),
|
|
209
|
-
totalValueAnnualizedFormatted: z.string(),
|
|
209
|
+
totalValueAnnualizedFormatted: z.string().nullable(),
|
|
210
210
|
totalValueMonthly: z.number().int(),
|
|
211
|
-
totalValueMonthlyFormatted: z.string(),
|
|
211
|
+
totalValueMonthlyFormatted: z.string().nullable(),
|
|
212
212
|
totalValueOneTime: z.number().int(),
|
|
213
|
-
totalValueOneTimeFormatted: z.string(),
|
|
213
|
+
totalValueOneTimeFormatted: z.string().nullable(),
|
|
214
214
|
});
|
|
215
215
|
const CLOSE_TASK_FIELDS = {
|
|
216
216
|
assignedTo: z.string().nullable(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/integration-contracts",
|
|
3
|
-
"version": "0.88.
|
|
3
|
+
"version": "0.88.6",
|
|
4
4
|
"description": "Shared integration payload contracts and provider primitives for Automate.ax.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@automate.ax/codec": "0.88.
|
|
49
|
+
"@automate.ax/codec": "0.88.6",
|
|
50
50
|
"@cfworker/json-schema": "^4.1.1",
|
|
51
51
|
"@googleapis/calendar": "^15.0.0",
|
|
52
52
|
"@googleapis/forms": "^6.0.1",
|
package/src/close/schemas.ts
CHANGED
|
@@ -210,23 +210,23 @@ export const CLOSE_OPPORTUNITY_PAGE_SCHEMA = z.object({
|
|
|
210
210
|
countByValuePeriod: z.record(z.string(), z.number().int().nonnegative()),
|
|
211
211
|
data: CLOSE_OPPORTUNITY_SCHEMA.array(),
|
|
212
212
|
expectedValueAnnual: z.number().int(),
|
|
213
|
-
expectedValueAnnualFormatted: z.string(),
|
|
213
|
+
expectedValueAnnualFormatted: z.string().nullable(),
|
|
214
214
|
expectedValueAnnualized: z.number().int(),
|
|
215
|
-
expectedValueAnnualizedFormatted: z.string(),
|
|
215
|
+
expectedValueAnnualizedFormatted: z.string().nullable(),
|
|
216
216
|
expectedValueMonthly: z.number().int(),
|
|
217
|
-
expectedValueMonthlyFormatted: z.string(),
|
|
217
|
+
expectedValueMonthlyFormatted: z.string().nullable(),
|
|
218
218
|
expectedValueOneTime: z.number().int(),
|
|
219
|
-
expectedValueOneTimeFormatted: z.string(),
|
|
219
|
+
expectedValueOneTimeFormatted: z.string().nullable(),
|
|
220
220
|
hasMore: z.boolean(),
|
|
221
221
|
totalResults: z.number().int().nonnegative(),
|
|
222
222
|
totalValueAnnual: z.number().int(),
|
|
223
|
-
totalValueAnnualFormatted: z.string(),
|
|
223
|
+
totalValueAnnualFormatted: z.string().nullable(),
|
|
224
224
|
totalValueAnnualized: z.number().int(),
|
|
225
|
-
totalValueAnnualizedFormatted: z.string(),
|
|
225
|
+
totalValueAnnualizedFormatted: z.string().nullable(),
|
|
226
226
|
totalValueMonthly: z.number().int(),
|
|
227
|
-
totalValueMonthlyFormatted: z.string(),
|
|
227
|
+
totalValueMonthlyFormatted: z.string().nullable(),
|
|
228
228
|
totalValueOneTime: z.number().int(),
|
|
229
|
-
totalValueOneTimeFormatted: z.string(),
|
|
229
|
+
totalValueOneTimeFormatted: z.string().nullable(),
|
|
230
230
|
})
|
|
231
231
|
|
|
232
232
|
const CLOSE_TASK_FIELDS = {
|