@zernio/node 0.2.123 → 0.2.125
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/index.d.mts +53 -14
- package/dist/index.d.ts +53 -14
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +6 -3
- package/src/generated/types.gen.ts +53 -14
package/dist/index.d.mts
CHANGED
|
@@ -3882,11 +3882,17 @@ type WebhookPayloadMessage = {
|
|
|
3882
3882
|
*/
|
|
3883
3883
|
isStoryMention?: boolean;
|
|
3884
3884
|
/**
|
|
3885
|
-
*
|
|
3886
|
-
*
|
|
3887
|
-
*
|
|
3888
|
-
*
|
|
3889
|
-
*
|
|
3885
|
+
* Ad-click attribution forwarded verbatim from Meta. Populated only on
|
|
3886
|
+
* the FIRST inbound message after the click; absent on subsequent
|
|
3887
|
+
* messages of the same conversation.
|
|
3888
|
+
*
|
|
3889
|
+
* The populated subset identifies the source platform:
|
|
3890
|
+
* - `ctwa_clid` and `source_*` fields: WhatsApp CTWA
|
|
3891
|
+
* (Click-to-WhatsApp). Attribution window is 7 days from click.
|
|
3892
|
+
* Forward to Meta Conversions API for Business Messaging replay.
|
|
3893
|
+
* - `ad_id` and `ads_context_data`: Facebook Messenger CTM
|
|
3894
|
+
* (Click-to-Message) or Instagram CTD (Click-to-Direct). Use
|
|
3895
|
+
* `ad_id` to attribute the conversation to a specific ad.
|
|
3890
3896
|
*
|
|
3891
3897
|
*/
|
|
3892
3898
|
referral?: {
|
|
@@ -3903,7 +3909,44 @@ type WebhookPayloadMessage = {
|
|
|
3903
3909
|
image_url?: string;
|
|
3904
3910
|
video_url?: string;
|
|
3905
3911
|
thumbnail_url?: string;
|
|
3906
|
-
|
|
3912
|
+
/**
|
|
3913
|
+
* Facebook Messenger CTM / Instagram CTD only. The Meta ad ID the
|
|
3914
|
+
* user clicked to start the conversation.
|
|
3915
|
+
*
|
|
3916
|
+
*/
|
|
3917
|
+
ad_id?: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* Optional `ref` parameter passed through from the Meta ad
|
|
3920
|
+
* creative. Facebook Messenger CTM / Instagram CTD only.
|
|
3921
|
+
*
|
|
3922
|
+
*/
|
|
3923
|
+
ref?: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* Meta-supplied source identifier (e.g. `ADS`). Facebook Messenger
|
|
3926
|
+
* CTM / Instagram CTD only.
|
|
3927
|
+
*
|
|
3928
|
+
*/
|
|
3929
|
+
source?: string;
|
|
3930
|
+
/**
|
|
3931
|
+
* Meta-supplied referral type (e.g. `OPEN_THREAD`). Facebook
|
|
3932
|
+
* Messenger CTM / Instagram CTD only.
|
|
3933
|
+
*
|
|
3934
|
+
*/
|
|
3935
|
+
type?: string;
|
|
3936
|
+
/**
|
|
3937
|
+
* Snapshot of the ad's public context at click time. Facebook
|
|
3938
|
+
* Messenger CTM / Instagram CTD only.
|
|
3939
|
+
*
|
|
3940
|
+
*/
|
|
3941
|
+
ads_context_data?: {
|
|
3942
|
+
ad_title?: string;
|
|
3943
|
+
photo_url?: string;
|
|
3944
|
+
video_url?: string;
|
|
3945
|
+
post_id?: string;
|
|
3946
|
+
product_id?: string;
|
|
3947
|
+
flow_id?: string;
|
|
3948
|
+
};
|
|
3949
|
+
} | null;
|
|
3907
3950
|
} | null;
|
|
3908
3951
|
timestamp: string;
|
|
3909
3952
|
};
|
|
@@ -14641,20 +14684,16 @@ type AddConversionAssociationsError = (unknown | {
|
|
|
14641
14684
|
error?: string;
|
|
14642
14685
|
});
|
|
14643
14686
|
type RemoveConversionAssociationsData = {
|
|
14644
|
-
body?: {
|
|
14645
|
-
adAccountId?: string;
|
|
14646
|
-
campaignIds?: Array<(string)>;
|
|
14647
|
-
};
|
|
14648
14687
|
path: {
|
|
14649
14688
|
accountId: string;
|
|
14650
14689
|
destinationId: string;
|
|
14651
14690
|
};
|
|
14652
|
-
query
|
|
14653
|
-
adAccountId
|
|
14691
|
+
query: {
|
|
14692
|
+
adAccountId: string;
|
|
14654
14693
|
/**
|
|
14655
|
-
* Comma-separated list.
|
|
14694
|
+
* Comma-separated list of campaign IDs.
|
|
14656
14695
|
*/
|
|
14657
|
-
campaignIds
|
|
14696
|
+
campaignIds: string;
|
|
14658
14697
|
};
|
|
14659
14698
|
};
|
|
14660
14699
|
type RemoveConversionAssociationsResponse = ({
|
package/dist/index.d.ts
CHANGED
|
@@ -3882,11 +3882,17 @@ type WebhookPayloadMessage = {
|
|
|
3882
3882
|
*/
|
|
3883
3883
|
isStoryMention?: boolean;
|
|
3884
3884
|
/**
|
|
3885
|
-
*
|
|
3886
|
-
*
|
|
3887
|
-
*
|
|
3888
|
-
*
|
|
3889
|
-
*
|
|
3885
|
+
* Ad-click attribution forwarded verbatim from Meta. Populated only on
|
|
3886
|
+
* the FIRST inbound message after the click; absent on subsequent
|
|
3887
|
+
* messages of the same conversation.
|
|
3888
|
+
*
|
|
3889
|
+
* The populated subset identifies the source platform:
|
|
3890
|
+
* - `ctwa_clid` and `source_*` fields: WhatsApp CTWA
|
|
3891
|
+
* (Click-to-WhatsApp). Attribution window is 7 days from click.
|
|
3892
|
+
* Forward to Meta Conversions API for Business Messaging replay.
|
|
3893
|
+
* - `ad_id` and `ads_context_data`: Facebook Messenger CTM
|
|
3894
|
+
* (Click-to-Message) or Instagram CTD (Click-to-Direct). Use
|
|
3895
|
+
* `ad_id` to attribute the conversation to a specific ad.
|
|
3890
3896
|
*
|
|
3891
3897
|
*/
|
|
3892
3898
|
referral?: {
|
|
@@ -3903,7 +3909,44 @@ type WebhookPayloadMessage = {
|
|
|
3903
3909
|
image_url?: string;
|
|
3904
3910
|
video_url?: string;
|
|
3905
3911
|
thumbnail_url?: string;
|
|
3906
|
-
|
|
3912
|
+
/**
|
|
3913
|
+
* Facebook Messenger CTM / Instagram CTD only. The Meta ad ID the
|
|
3914
|
+
* user clicked to start the conversation.
|
|
3915
|
+
*
|
|
3916
|
+
*/
|
|
3917
|
+
ad_id?: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* Optional `ref` parameter passed through from the Meta ad
|
|
3920
|
+
* creative. Facebook Messenger CTM / Instagram CTD only.
|
|
3921
|
+
*
|
|
3922
|
+
*/
|
|
3923
|
+
ref?: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* Meta-supplied source identifier (e.g. `ADS`). Facebook Messenger
|
|
3926
|
+
* CTM / Instagram CTD only.
|
|
3927
|
+
*
|
|
3928
|
+
*/
|
|
3929
|
+
source?: string;
|
|
3930
|
+
/**
|
|
3931
|
+
* Meta-supplied referral type (e.g. `OPEN_THREAD`). Facebook
|
|
3932
|
+
* Messenger CTM / Instagram CTD only.
|
|
3933
|
+
*
|
|
3934
|
+
*/
|
|
3935
|
+
type?: string;
|
|
3936
|
+
/**
|
|
3937
|
+
* Snapshot of the ad's public context at click time. Facebook
|
|
3938
|
+
* Messenger CTM / Instagram CTD only.
|
|
3939
|
+
*
|
|
3940
|
+
*/
|
|
3941
|
+
ads_context_data?: {
|
|
3942
|
+
ad_title?: string;
|
|
3943
|
+
photo_url?: string;
|
|
3944
|
+
video_url?: string;
|
|
3945
|
+
post_id?: string;
|
|
3946
|
+
product_id?: string;
|
|
3947
|
+
flow_id?: string;
|
|
3948
|
+
};
|
|
3949
|
+
} | null;
|
|
3907
3950
|
} | null;
|
|
3908
3951
|
timestamp: string;
|
|
3909
3952
|
};
|
|
@@ -14641,20 +14684,16 @@ type AddConversionAssociationsError = (unknown | {
|
|
|
14641
14684
|
error?: string;
|
|
14642
14685
|
});
|
|
14643
14686
|
type RemoveConversionAssociationsData = {
|
|
14644
|
-
body?: {
|
|
14645
|
-
adAccountId?: string;
|
|
14646
|
-
campaignIds?: Array<(string)>;
|
|
14647
|
-
};
|
|
14648
14687
|
path: {
|
|
14649
14688
|
accountId: string;
|
|
14650
14689
|
destinationId: string;
|
|
14651
14690
|
};
|
|
14652
|
-
query
|
|
14653
|
-
adAccountId
|
|
14691
|
+
query: {
|
|
14692
|
+
adAccountId: string;
|
|
14654
14693
|
/**
|
|
14655
|
-
* Comma-separated list.
|
|
14694
|
+
* Comma-separated list of campaign IDs.
|
|
14656
14695
|
*/
|
|
14657
|
-
campaignIds
|
|
14696
|
+
campaignIds: string;
|
|
14658
14697
|
};
|
|
14659
14698
|
};
|
|
14660
14699
|
type RemoveConversionAssociationsResponse = ({
|
package/package.json
CHANGED
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -3811,9 +3811,12 @@ export const addConversionAssociations = <ThrowOnError extends boolean = false>(
|
|
|
3811
3811
|
/**
|
|
3812
3812
|
* Remove campaign↔conversion associations
|
|
3813
3813
|
* Remove one or more campaign associations from this conversion rule.
|
|
3814
|
-
*
|
|
3815
|
-
* (campaignIds comma-separated)
|
|
3816
|
-
*
|
|
3814
|
+
* Pass `adAccountId` and `campaignIds` as query parameters
|
|
3815
|
+
* (`campaignIds` is comma-separated). The route also accepts a JSON
|
|
3816
|
+
* body with the same fields for clients that prefer DELETE-with-body,
|
|
3817
|
+
* but the documented surface is query-only because some SDK code
|
|
3818
|
+
* generators (e.g. Python) collapse query + body parameters with the
|
|
3819
|
+
* same name into a single kwarg.
|
|
3817
3820
|
*
|
|
3818
3821
|
*/
|
|
3819
3822
|
export const removeConversionAssociations = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<RemoveConversionAssociationsData, ThrowOnError>) => {
|
|
@@ -3412,11 +3412,17 @@ export type WebhookPayloadMessage = {
|
|
|
3412
3412
|
*/
|
|
3413
3413
|
isStoryMention?: boolean;
|
|
3414
3414
|
/**
|
|
3415
|
-
*
|
|
3416
|
-
*
|
|
3417
|
-
*
|
|
3418
|
-
*
|
|
3419
|
-
*
|
|
3415
|
+
* Ad-click attribution forwarded verbatim from Meta. Populated only on
|
|
3416
|
+
* the FIRST inbound message after the click; absent on subsequent
|
|
3417
|
+
* messages of the same conversation.
|
|
3418
|
+
*
|
|
3419
|
+
* The populated subset identifies the source platform:
|
|
3420
|
+
* - `ctwa_clid` and `source_*` fields: WhatsApp CTWA
|
|
3421
|
+
* (Click-to-WhatsApp). Attribution window is 7 days from click.
|
|
3422
|
+
* Forward to Meta Conversions API for Business Messaging replay.
|
|
3423
|
+
* - `ad_id` and `ads_context_data`: Facebook Messenger CTM
|
|
3424
|
+
* (Click-to-Message) or Instagram CTD (Click-to-Direct). Use
|
|
3425
|
+
* `ad_id` to attribute the conversation to a specific ad.
|
|
3420
3426
|
*
|
|
3421
3427
|
*/
|
|
3422
3428
|
referral?: {
|
|
@@ -3433,7 +3439,44 @@ export type WebhookPayloadMessage = {
|
|
|
3433
3439
|
image_url?: string;
|
|
3434
3440
|
video_url?: string;
|
|
3435
3441
|
thumbnail_url?: string;
|
|
3436
|
-
|
|
3442
|
+
/**
|
|
3443
|
+
* Facebook Messenger CTM / Instagram CTD only. The Meta ad ID the
|
|
3444
|
+
* user clicked to start the conversation.
|
|
3445
|
+
*
|
|
3446
|
+
*/
|
|
3447
|
+
ad_id?: string;
|
|
3448
|
+
/**
|
|
3449
|
+
* Optional `ref` parameter passed through from the Meta ad
|
|
3450
|
+
* creative. Facebook Messenger CTM / Instagram CTD only.
|
|
3451
|
+
*
|
|
3452
|
+
*/
|
|
3453
|
+
ref?: string;
|
|
3454
|
+
/**
|
|
3455
|
+
* Meta-supplied source identifier (e.g. `ADS`). Facebook Messenger
|
|
3456
|
+
* CTM / Instagram CTD only.
|
|
3457
|
+
*
|
|
3458
|
+
*/
|
|
3459
|
+
source?: string;
|
|
3460
|
+
/**
|
|
3461
|
+
* Meta-supplied referral type (e.g. `OPEN_THREAD`). Facebook
|
|
3462
|
+
* Messenger CTM / Instagram CTD only.
|
|
3463
|
+
*
|
|
3464
|
+
*/
|
|
3465
|
+
type?: string;
|
|
3466
|
+
/**
|
|
3467
|
+
* Snapshot of the ad's public context at click time. Facebook
|
|
3468
|
+
* Messenger CTM / Instagram CTD only.
|
|
3469
|
+
*
|
|
3470
|
+
*/
|
|
3471
|
+
ads_context_data?: {
|
|
3472
|
+
ad_title?: string;
|
|
3473
|
+
photo_url?: string;
|
|
3474
|
+
video_url?: string;
|
|
3475
|
+
post_id?: string;
|
|
3476
|
+
product_id?: string;
|
|
3477
|
+
flow_id?: string;
|
|
3478
|
+
};
|
|
3479
|
+
} | null;
|
|
3437
3480
|
} | null;
|
|
3438
3481
|
timestamp: string;
|
|
3439
3482
|
};
|
|
@@ -15028,20 +15071,16 @@ export type AddConversionAssociationsError = (unknown | {
|
|
|
15028
15071
|
});
|
|
15029
15072
|
|
|
15030
15073
|
export type RemoveConversionAssociationsData = {
|
|
15031
|
-
body?: {
|
|
15032
|
-
adAccountId?: string;
|
|
15033
|
-
campaignIds?: Array<(string)>;
|
|
15034
|
-
};
|
|
15035
15074
|
path: {
|
|
15036
15075
|
accountId: string;
|
|
15037
15076
|
destinationId: string;
|
|
15038
15077
|
};
|
|
15039
|
-
query
|
|
15040
|
-
adAccountId
|
|
15078
|
+
query: {
|
|
15079
|
+
adAccountId: string;
|
|
15041
15080
|
/**
|
|
15042
|
-
* Comma-separated list.
|
|
15081
|
+
* Comma-separated list of campaign IDs.
|
|
15043
15082
|
*/
|
|
15044
|
-
campaignIds
|
|
15083
|
+
campaignIds: string;
|
|
15045
15084
|
};
|
|
15046
15085
|
};
|
|
15047
15086
|
|